Models
Types

Models

User

Description: @@deny('read', deletedAt != null)

Fields

Name Type Attributes Required Comment
name String
  • -
Yes @length(1, 160)
email String
  • @unique
Yes @email @length(3, 160)
artist Artist?
  • -
No -
author Author?
  • -
No -
editions Edition[]
  • -
Yes -
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
deletedAt DateTime?
  • -
No -
zenstack_guard Boolean
  • @default(true)
Yes -
zenstack_transaction String?
  • -
No -

Operations

findUnique

Find zero or one User

// Get one User
const user = await prisma.user.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

findFirst

Find first User

// Get one User
const user = await prisma.user.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum[] No

Output

Type: User
Required: No
List: No

findMany

Find zero or more User

// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum[] No

Output

Type: User
Required: Yes
List: Yes

create

Create one User

// Create one User
const User = await prisma.user.create({
  data: {
    // ... data to create a User
  }
})

Input

Name Type Required
data UserCreateInput | UserUncheckedCreateInput Yes

Output

Type: User
Required: Yes
List: No

delete

Delete one User

// Delete one User
const User = await prisma.user.delete({
  where: {
    // ... filter to delete one User
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

update

Update one User

// Update one User
const user = await prisma.user.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateInput | UserUncheckedUpdateInput Yes
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

deleteMany

Delete zero or more User

// Delete a few User
const { count } = await prisma.user.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one User

const { count } = await prisma.user.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateManyMutationInput | UserUncheckedUpdateManyInput Yes
where UserWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one User

// Update or create a User
const user = await prisma.user.upsert({
  create: {
    // ... data to create a User
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the User we want to update
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes
create UserCreateInput | UserUncheckedCreateInput Yes
update UserUpdateInput | UserUncheckedUpdateInput Yes

Output

Type: User
Required: Yes
List: No

Author

Description: @@deny('read', deletedAt != null)

Fields

Name Type Attributes Required Comment
stories Story[]
  • -
Yes -
pageTexts PageText[]
  • -
Yes -
user User
  • -
Yes -
userId String
  • @unique
Yes -
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
deletedAt DateTime?
  • -
No -
zenstack_guard Boolean
  • @default(true)
Yes -
zenstack_transaction String?
  • -
No -

Operations

findUnique

Find zero or one Author

// Get one Author
const author = await prisma.author.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AuthorWhereUniqueInput Yes

Output

Type: Author
Required: No
List: No

findFirst

Find first Author

// Get one Author
const author = await prisma.author.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AuthorWhereInput No
orderBy AuthorOrderByWithRelationInput[] | AuthorOrderByWithRelationInput No
cursor AuthorWhereUniqueInput No
take Int No
skip Int No
distinct AuthorScalarFieldEnum[] No

Output

Type: Author
Required: No
List: No

findMany

Find zero or more Author

// Get all Author
const Author = await prisma.author.findMany()
// Get first 10 Author
const Author = await prisma.author.findMany({ take: 10 })

Input

Name Type Required
where AuthorWhereInput No
orderBy AuthorOrderByWithRelationInput[] | AuthorOrderByWithRelationInput No
cursor AuthorWhereUniqueInput No
take Int No
skip Int No
distinct AuthorScalarFieldEnum[] No

Output

Type: Author
Required: Yes
List: Yes

create

Create one Author

// Create one Author
const Author = await prisma.author.create({
  data: {
    // ... data to create a Author
  }
})

Input

Name Type Required
data AuthorCreateInput | AuthorUncheckedCreateInput Yes

Output

Type: Author
Required: Yes
List: No

delete

Delete one Author

// Delete one Author
const Author = await prisma.author.delete({
  where: {
    // ... filter to delete one Author
  }
})

Input

Name Type Required
where AuthorWhereUniqueInput Yes

Output

Type: Author
Required: No
List: No

update

Update one Author

// Update one Author
const author = await prisma.author.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AuthorUpdateInput | AuthorUncheckedUpdateInput Yes
where AuthorWhereUniqueInput Yes

Output

Type: Author
Required: No
List: No

deleteMany

Delete zero or more Author

// Delete a few Author
const { count } = await prisma.author.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AuthorWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Author

const { count } = await prisma.author.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AuthorUpdateManyMutationInput | AuthorUncheckedUpdateManyInput Yes
where AuthorWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Author

// Update or create a Author
const author = await prisma.author.upsert({
  create: {
    // ... data to create a Author
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Author we want to update
  }
})

Input

Name Type Required
where AuthorWhereUniqueInput Yes
create AuthorCreateInput | AuthorUncheckedCreateInput Yes
update AuthorUpdateInput | AuthorUncheckedUpdateInput Yes

Output

Type: Author
Required: Yes
List: No

Artist

Description: @@deny('read', deletedAt != null)

Fields

Name Type Attributes Required Comment
stories Story[]
  • -
Yes -
pageArtworks PageArtwork[]
  • -
Yes -
user User
  • -
Yes -
userId String
  • @unique
Yes -
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
deletedAt DateTime?
  • -
No -
zenstack_guard Boolean
  • @default(true)
Yes -
zenstack_transaction String?
  • -
No -

Operations

findUnique

Find zero or one Artist

// Get one Artist
const artist = await prisma.artist.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ArtistWhereUniqueInput Yes

Output

Type: Artist
Required: No
List: No

findFirst

Find first Artist

// Get one Artist
const artist = await prisma.artist.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ArtistWhereInput No
orderBy ArtistOrderByWithRelationInput[] | ArtistOrderByWithRelationInput No
cursor ArtistWhereUniqueInput No
take Int No
skip Int No
distinct ArtistScalarFieldEnum[] No

Output

Type: Artist
Required: No
List: No

findMany

Find zero or more Artist

// Get all Artist
const Artist = await prisma.artist.findMany()
// Get first 10 Artist
const Artist = await prisma.artist.findMany({ take: 10 })

Input

Name Type Required
where ArtistWhereInput No
orderBy ArtistOrderByWithRelationInput[] | ArtistOrderByWithRelationInput No
cursor ArtistWhereUniqueInput No
take Int No
skip Int No
distinct ArtistScalarFieldEnum[] No

Output

Type: Artist
Required: Yes
List: Yes

create

Create one Artist

// Create one Artist
const Artist = await prisma.artist.create({
  data: {
    // ... data to create a Artist
  }
})

Input

Name Type Required
data ArtistCreateInput | ArtistUncheckedCreateInput Yes

Output

Type: Artist
Required: Yes
List: No

delete

Delete one Artist

// Delete one Artist
const Artist = await prisma.artist.delete({
  where: {
    // ... filter to delete one Artist
  }
})

Input

Name Type Required
where ArtistWhereUniqueInput Yes

Output

Type: Artist
Required: No
List: No

update

Update one Artist

// Update one Artist
const artist = await prisma.artist.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ArtistUpdateInput | ArtistUncheckedUpdateInput Yes
where ArtistWhereUniqueInput Yes

Output

Type: Artist
Required: No
List: No

deleteMany

Delete zero or more Artist

// Delete a few Artist
const { count } = await prisma.artist.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ArtistWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Artist

const { count } = await prisma.artist.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ArtistUpdateManyMutationInput | ArtistUncheckedUpdateManyInput Yes
where ArtistWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Artist

// Update or create a Artist
const artist = await prisma.artist.upsert({
  create: {
    // ... data to create a Artist
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Artist we want to update
  }
})

Input

Name Type Required
where ArtistWhereUniqueInput Yes
create ArtistCreateInput | ArtistUncheckedCreateInput Yes
update ArtistUpdateInput | ArtistUncheckedUpdateInput Yes

Output

Type: Artist
Required: Yes
List: No

Translator

Description: @@deny('read', deletedAt != null)

Fields

Name Type Attributes Required Comment
pageTexts PageText[]
  • -
Yes -
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
deletedAt DateTime?
  • -
No -
zenstack_guard Boolean
  • @default(true)
Yes -
zenstack_transaction String?
  • -
No -

Operations

findUnique

Find zero or one Translator

// Get one Translator
const translator = await prisma.translator.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TranslatorWhereUniqueInput Yes

Output

Type: Translator
Required: No
List: No

findFirst

Find first Translator

// Get one Translator
const translator = await prisma.translator.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TranslatorWhereInput No
orderBy TranslatorOrderByWithRelationInput[] | TranslatorOrderByWithRelationInput No
cursor TranslatorWhereUniqueInput No
take Int No
skip Int No
distinct TranslatorScalarFieldEnum[] No

Output

Type: Translator
Required: No
List: No

findMany

Find zero or more Translator

// Get all Translator
const Translator = await prisma.translator.findMany()
// Get first 10 Translator
const Translator = await prisma.translator.findMany({ take: 10 })

Input

Name Type Required
where TranslatorWhereInput No
orderBy TranslatorOrderByWithRelationInput[] | TranslatorOrderByWithRelationInput No
cursor TranslatorWhereUniqueInput No
take Int No
skip Int No
distinct TranslatorScalarFieldEnum[] No

Output

Type: Translator
Required: Yes
List: Yes

create

Create one Translator

// Create one Translator
const Translator = await prisma.translator.create({
  data: {
    // ... data to create a Translator
  }
})

Input

Name Type Required
data TranslatorCreateInput | TranslatorUncheckedCreateInput Yes

Output

Type: Translator
Required: Yes
List: No

delete

Delete one Translator

// Delete one Translator
const Translator = await prisma.translator.delete({
  where: {
    // ... filter to delete one Translator
  }
})

Input

Name Type Required
where TranslatorWhereUniqueInput Yes

Output

Type: Translator
Required: No
List: No

update

Update one Translator

// Update one Translator
const translator = await prisma.translator.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TranslatorUpdateInput | TranslatorUncheckedUpdateInput Yes
where TranslatorWhereUniqueInput Yes

Output

Type: Translator
Required: No
List: No

deleteMany

Delete zero or more Translator

// Delete a few Translator
const { count } = await prisma.translator.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TranslatorWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Translator

const { count } = await prisma.translator.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TranslatorUpdateManyMutationInput | TranslatorUncheckedUpdateManyInput Yes
where TranslatorWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Translator

// Update or create a Translator
const translator = await prisma.translator.upsert({
  create: {
    // ... data to create a Translator
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Translator we want to update
  }
})

Input

Name Type Required
where TranslatorWhereUniqueInput Yes
create TranslatorCreateInput | TranslatorUncheckedCreateInput Yes
update TranslatorUpdateInput | TranslatorUncheckedUpdateInput Yes

Output

Type: Translator
Required: Yes
List: No

Concept

Description: @@deny('read', deletedAt != null)

Fields

Name Type Attributes Required Comment
name String
  • -
Yes @length(1, 100)
type ConceptType
  • -
Yes -
status ConceptStatus
  • @default(CREATED)
Yes -
description String?
  • -
No -
prompt String
  • -
Yes -
identifier String
  • -
Yes -
classNoun String
  • -
Yes -
negativePrompt String
  • -
Yes -
instancePrompt String
  • -
Yes The prompt you use to describe your training images, in the format: `a [identifier] [class noun]`, where the `[identifier]` should be a rare token. Relatively short sequences with 1-3 letters work the best (e.g. `sks`, `xjy`). `[class noun]` is a coarse class descriptor of the subject (e.g. cat, dog, watch, etc.). For example, your `instance_prompt` can be `a sks dog`, or with some extra description `a photo of a sks dog`. The trained model will learn to bind a unique identifier with your specific subject in the `instance_data`.
classPrompt String
  • -
Yes The prompt or description of the coarse class of your training images, in the format of `a [class noun]`, optionally with some extra description. `class_prompt` is used to alleviate overfitting to your customized images (the trained model should still keep the learnt prior so that it can still generate different dogs when the `[identifier]` is not in the prompt). Corresponding to the examples of the `instant_prompt` above, the `class_prompt` can be `a dog` or `a photo of a dog`.
positivePrompts String[]
  • -
Yes -
negativePrompts String[]
  • -
Yes -
dreamboothTrainingId String?
  • -
No -
dreamboothTraining DreamBoothTraining?
  • -
No -
dreamboothModelURI String?
  • -
No @url
photos Photo[]
  • -
Yes -
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
deletedAt DateTime?
  • -
No -
zenstack_guard Boolean
  • @default(true)
Yes -
zenstack_transaction String?
  • -
No -

Operations

findUnique

Find zero or one Concept

// Get one Concept
const concept = await prisma.concept.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptWhereUniqueInput Yes

Output

Type: Concept
Required: No
List: No

findFirst

Find first Concept

// Get one Concept
const concept = await prisma.concept.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptWhereInput No
orderBy ConceptOrderByWithRelationInput[] | ConceptOrderByWithRelationInput No
cursor ConceptWhereUniqueInput No
take Int No
skip Int No
distinct ConceptScalarFieldEnum[] No

Output

Type: Concept
Required: No
List: No

findMany

Find zero or more Concept

// Get all Concept
const Concept = await prisma.concept.findMany()
// Get first 10 Concept
const Concept = await prisma.concept.findMany({ take: 10 })

Input

Name Type Required
where ConceptWhereInput No
orderBy ConceptOrderByWithRelationInput[] | ConceptOrderByWithRelationInput No
cursor ConceptWhereUniqueInput No
take Int No
skip Int No
distinct ConceptScalarFieldEnum[] No

Output

Type: Concept
Required: Yes
List: Yes

create

Create one Concept

// Create one Concept
const Concept = await prisma.concept.create({
  data: {
    // ... data to create a Concept
  }
})

Input

Name Type Required
data ConceptCreateInput | ConceptUncheckedCreateInput Yes

Output

Type: Concept
Required: Yes
List: No

delete

Delete one Concept

// Delete one Concept
const Concept = await prisma.concept.delete({
  where: {
    // ... filter to delete one Concept
  }
})

Input

Name Type Required
where ConceptWhereUniqueInput Yes

Output

Type: Concept
Required: No
List: No

update

Update one Concept

// Update one Concept
const concept = await prisma.concept.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptUpdateInput | ConceptUncheckedUpdateInput Yes
where ConceptWhereUniqueInput Yes

Output

Type: Concept
Required: No
List: No

deleteMany

Delete zero or more Concept

// Delete a few Concept
const { count } = await prisma.concept.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConceptWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Concept

const { count } = await prisma.concept.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyInput Yes
where ConceptWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Concept

// Update or create a Concept
const concept = await prisma.concept.upsert({
  create: {
    // ... data to create a Concept
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Concept we want to update
  }
})

Input

Name Type Required
where ConceptWhereUniqueInput Yes
create ConceptCreateInput | ConceptUncheckedCreateInput Yes
update ConceptUpdateInput | ConceptUncheckedUpdateInput Yes

Output

Type: Concept
Required: Yes
List: No

Prediction

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
uuid String
  • @unique
Yes -
input Json?
  • -
No -
output Json?
  • -
No -
status String?
  • -
No -
created_at DateTime?
  • -
No -
started_at DateTime?
  • -
No -
completed_at DateTime?
  • -
No -
version String?
  • -
No -
metrics Json?
  • -
No -
error String?
  • -
No -
logs String?
  • -
No -

Operations

findUnique

Find zero or one Prediction

// Get one Prediction
const prediction = await prisma.prediction.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PredictionWhereUniqueInput Yes

Output

Type: Prediction
Required: No
List: No

findFirst

Find first Prediction

// Get one Prediction
const prediction = await prisma.prediction.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PredictionWhereInput No
orderBy PredictionOrderByWithRelationInput[] | PredictionOrderByWithRelationInput No
cursor PredictionWhereUniqueInput No
take Int No
skip Int No
distinct PredictionScalarFieldEnum[] No

Output

Type: Prediction
Required: No
List: No

findMany

Find zero or more Prediction

// Get all Prediction
const Prediction = await prisma.prediction.findMany()
// Get first 10 Prediction
const Prediction = await prisma.prediction.findMany({ take: 10 })

Input

Name Type Required
where PredictionWhereInput No
orderBy PredictionOrderByWithRelationInput[] | PredictionOrderByWithRelationInput No
cursor PredictionWhereUniqueInput No
take Int No
skip Int No
distinct PredictionScalarFieldEnum[] No

Output

Type: Prediction
Required: Yes
List: Yes

create

Create one Prediction

// Create one Prediction
const Prediction = await prisma.prediction.create({
  data: {
    // ... data to create a Prediction
  }
})

Input

Name Type Required
data PredictionCreateInput | PredictionUncheckedCreateInput Yes

Output

Type: Prediction
Required: Yes
List: No

delete

Delete one Prediction

// Delete one Prediction
const Prediction = await prisma.prediction.delete({
  where: {
    // ... filter to delete one Prediction
  }
})

Input

Name Type Required
where PredictionWhereUniqueInput Yes

Output

Type: Prediction
Required: No
List: No

update

Update one Prediction

// Update one Prediction
const prediction = await prisma.prediction.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PredictionUpdateInput | PredictionUncheckedUpdateInput Yes
where PredictionWhereUniqueInput Yes

Output

Type: Prediction
Required: No
List: No

deleteMany

Delete zero or more Prediction

// Delete a few Prediction
const { count } = await prisma.prediction.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PredictionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Prediction

const { count } = await prisma.prediction.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PredictionUpdateManyMutationInput | PredictionUncheckedUpdateManyInput Yes
where PredictionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Prediction

// Update or create a Prediction
const prediction = await prisma.prediction.upsert({
  create: {
    // ... data to create a Prediction
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Prediction we want to update
  }
})

Input

Name Type Required
where PredictionWhereUniqueInput Yes
create PredictionCreateInput | PredictionUncheckedCreateInput Yes
update PredictionUpdateInput | PredictionUncheckedUpdateInput Yes

Output

Type: Prediction
Required: Yes
List: No

DreamBoothTraining

Description: There are a few inputs you should know about when training with this model: - `instance_data` (required) - A ZIP file containing your training images (JPG, PNG, etc. size not restricted). These images contain your "subject" that you want the trained model to embed in the output domain for later generating customized scenes beyond the training images. For best results, use images without noise or unrelated object in the background. - `instance_prompt` (required) - This is the prompt you use to describe your training images, in the format: `a [identifier] [class noun]`, where the `[identifier]` should be a rare-token - it is found that relatively short sequences with 1-3 letters work the best (e.g. `sks`, `xjy`). `[class noun]` is a coarse class descriptor of the subject (e.g. cat, dog, watch, etc.). For example, your `instance_prompt` can be: `a sks dog`, or with some extra description `a photo of a xjy dog`. The trained model will learn to bind a unique identifier with your specific subject in the `instance_data`. - `class_prompt` (required) - This is the prompt or description of the coarse class of your training images, in the format of `a [class noun]` (or with some extra description). `class_prompt` is used to alleviate overfitting to your customized images (the trained model should still keep the learnt prior so that it can still generate different dogs when the `[identifier]` is not in the prompt). Corresponding to the examples of the `instant_prompt` above, the `class_prompt` can be `a dog` or `a photo of a dog`. - `class_data` (optional) - This corresponds to `class_prompt` above, also with the purpose to keep the generalizability of the model. By default, the pretrained stable-diffusion model will generate N (determined by the `num_class_images` you set) images based on the `class_prompt` provided above. But to save time or to to have your preferred specific set of `class_data`, you can also provide them in a ZIP file. You may also want to change `num_class_images` and the `max_train_steps` settings, to trade-off speed and quality. `seed` is randomly initialized to 1337, feel free to change it!

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
instance_prompt String
  • -
Yes The prompt you use to describe your training images, in the format: `a [identifier] [class noun]`, where the `[identifier]` should be a rare token. Relatively short sequences with 1-3 letters work the best (e.g. `sks`, `xjy`). `[class noun]` is a coarse class descriptor of the subject (e.g. cat, dog, watch, etc.). For example, your `instance_prompt` can be `a sks dog`, or with some extra description `a photo of a sks dog`. The trained model will learn to bind a unique identifier with your specific subject in the `instance_data`.
class_prompt String
  • -
Yes The prompt or description of the coarse class of your training images, in the format of `a [class noun]`, optionally with some extra description. `class_prompt` is used to alleviate overfitting to your customized images (the trained model should still keep the learnt prior so that it can still generate different dogs when the `[identifier]` is not in the prompt). Corresponding to the examples of the `instant_prompt` above, the `class_prompt` can be `a dog` or `a photo of a dog`.
instance_data String
  • -
Yes A ZIP file containing your training images (JPG, PNG, etc. size not restricted). These images contain your 'subject' that you want the trained model to embed in the output domain for later generating customized scenes beyond the training images. For best results, use images without noise or unrelated objects in the background.
class_data String
  • -
Yes An optional ZIP file containing the training data of class images. This corresponds to `class_prompt` above, also with the purpose of keeping the model generalizable. By default, the pretrained stable-diffusion model will generate N images (determined by the `num_class_images` you set) based on the `class_prompt` provided. But to save time or to have your preferred specific set of `class_data`, you can also provide them in a ZIP file.
num_class_images Int
  • @default(50)
Yes Minimal class images for prior preservation loss. If not enough images are provided in class_data, additional images will be sampled with class_prompt.
save_sample_prompt String?
  • -
No The prompt used to generate sample outputs to save.
save_sample_negative_prompt String?
  • -
No The negative prompt used to generate sample outputs to save.
n_save_sample Int
  • @default(4)
Yes The number of samples to save.
save_guidance_scale Float
  • @default(7.5)
Yes CFG for save sample.
save_infer_steps Int
  • @default(50)
Yes The number of inference steps for save sample.
pad_tokens Boolean
  • @default(false)
Yes Flag to pad tokens to length 77.
with_prior_preservation Boolean
  • @default(true)
Yes Flag to add prior preservation loss.
prior_loss_weight Float
  • @default(1)
Yes Weight of prior preservation loss.
seed Int
  • @default(1337)
Yes A seed for reproducible training
resolution Int
  • @default(512)
Yes The resolution for input images. All the images in the train/validation dataset will be resized to this resolution.
center_crop Boolean
  • @default(false)
Yes Whether to center crop images before resizing to resolution
train_text_encoder Boolean
  • @default(true)
Yes Whether to train the text encoder
train_batch_size Int
  • @default(1)
Yes Batch size (per device) for the training dataloader.
sample_batch_size Int
  • @default(4)
Yes Batch size (per device) for sampling images.
num_train_epochs Int
  • @default(1)
Yes Number of training epochs
max_train_steps Int
  • @default(2000)
Yes Total number of training steps to perform. If provided, overrides num_train_epochs.
gradient_accumulation_steps Int
  • @default(1)
Yes Number of updates steps to accumulate before performing a backward/update pass.
gradient_checkpointing Boolean
  • @default(false)
Yes Whether or not to use gradient checkpointing to save memory at the expense of slower backward pass.
learning_rate Float
  • @default(0.000001)
Yes Initial learning rate (after the potential warmup period) to use.
scale_lr Boolean
  • @default(false)
Yes Scale the learning rate by the number of GPUs, gradient accumulation steps, and batch size.
lr_scheduler LRScheduler
  • @default(constant)
Yes The scheduler type to use
lr_warmup_steps Int
  • @default(0)
Yes Number of steps for the warmup in the lr scheduler.
use_8bit_adam Boolean
  • @default(false)
Yes Whether or not to use 8-bit Adam from bitsandbytes.
adam_beta1 Float
  • @default(0.9)
Yes The beta1 parameter for the Adam optimizer.
adam_beta2 Float
  • @default(0.999)
Yes The beta2 parameter for the Adam optimizer.
adam_weight_decay Float
  • @default(0.01)
Yes Weight decay to use
adam_epsilon Float
  • -
Yes Epsilon value for the Adam optimizer
max_grad_norm Float
  • @default(1)
Yes Max gradient norm.
Concept Concept[]
  • -
Yes -
zenstack_guard Boolean
  • @default(true)
Yes -
zenstack_transaction String?
  • -
No -

Operations

findUnique

Find zero or one DreamBoothTraining

// Get one DreamBoothTraining
const dreamBoothTraining = await prisma.dreamBoothTraining.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DreamBoothTrainingWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first DreamBoothTraining

// Get one DreamBoothTraining
const dreamBoothTraining = await prisma.dreamBoothTraining.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DreamBoothTrainingWhereInput No
orderBy DreamBoothTrainingOrderByWithRelationInput[] | DreamBoothTrainingOrderByWithRelationInput No
cursor DreamBoothTrainingWhereUniqueInput No
take Int No
skip Int No
distinct DreamBoothTrainingScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more DreamBoothTraining

// Get all DreamBoothTraining
const DreamBoothTraining = await prisma.dreamBoothTraining.findMany()
// Get first 10 DreamBoothTraining
const DreamBoothTraining = await prisma.dreamBoothTraining.findMany({ take: 10 })

Input

Name Type Required
where DreamBoothTrainingWhereInput No
orderBy DreamBoothTrainingOrderByWithRelationInput[] | DreamBoothTrainingOrderByWithRelationInput No
cursor DreamBoothTrainingWhereUniqueInput No
take Int No
skip Int No
distinct DreamBoothTrainingScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one DreamBoothTraining

// Create one DreamBoothTraining
const DreamBoothTraining = await prisma.dreamBoothTraining.create({
  data: {
    // ... data to create a DreamBoothTraining
  }
})

Input

Name Type Required
data DreamBoothTrainingCreateInput | DreamBoothTrainingUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one DreamBoothTraining

// Delete one DreamBoothTraining
const DreamBoothTraining = await prisma.dreamBoothTraining.delete({
  where: {
    // ... filter to delete one DreamBoothTraining
  }
})

Input

Name Type Required
where DreamBoothTrainingWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one DreamBoothTraining

// Update one DreamBoothTraining
const dreamBoothTraining = await prisma.dreamBoothTraining.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DreamBoothTrainingUpdateInput | DreamBoothTrainingUncheckedUpdateInput Yes
where DreamBoothTrainingWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more DreamBoothTraining

// Delete a few DreamBoothTraining
const { count } = await prisma.dreamBoothTraining.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DreamBoothTrainingWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one DreamBoothTraining

const { count } = await prisma.dreamBoothTraining.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DreamBoothTrainingUpdateManyMutationInput | DreamBoothTrainingUncheckedUpdateManyInput Yes
where DreamBoothTrainingWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one DreamBoothTraining

// Update or create a DreamBoothTraining
const dreamBoothTraining = await prisma.dreamBoothTraining.upsert({
  create: {
    // ... data to create a DreamBoothTraining
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the DreamBoothTraining we want to update
  }
})

Input

Name Type Required
where DreamBoothTrainingWhereUniqueInput Yes
create DreamBoothTrainingCreateInput | DreamBoothTrainingUncheckedCreateInput Yes
update DreamBoothTrainingUpdateInput | DreamBoothTrainingUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Edition

Description: @@deny('read', deletedAt != null)

Fields

Name Type Attributes Required Comment
userId String
  • @unique
Yes -
pdfId String
  • @unique
Yes -
user User
  • -
Yes -
pdf PDF
  • -
Yes -
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
deletedAt DateTime?
  • -
No -
zenstack_guard Boolean
  • @default(true)
Yes -
zenstack_transaction String?
  • -
No -

Operations

findUnique

Find zero or one Edition

// Get one Edition
const edition = await prisma.edition.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EditionWhereUniqueInput Yes

Output

Type: Edition
Required: No
List: No

findFirst

Find first Edition

// Get one Edition
const edition = await prisma.edition.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EditionWhereInput No
orderBy EditionOrderByWithRelationInput[] | EditionOrderByWithRelationInput No
cursor EditionWhereUniqueInput No
take Int No
skip Int No
distinct EditionScalarFieldEnum[] No

Output

Type: Edition
Required: No
List: No

findMany

Find zero or more Edition

// Get all Edition
const Edition = await prisma.edition.findMany()
// Get first 10 Edition
const Edition = await prisma.edition.findMany({ take: 10 })

Input

Name Type Required
where EditionWhereInput No
orderBy EditionOrderByWithRelationInput[] | EditionOrderByWithRelationInput No
cursor EditionWhereUniqueInput No
take Int No
skip Int No
distinct EditionScalarFieldEnum[] No

Output

Type: Edition
Required: Yes
List: Yes

create

Create one Edition

// Create one Edition
const Edition = await prisma.edition.create({
  data: {
    // ... data to create a Edition
  }
})

Input

Name Type Required
data EditionCreateInput | EditionUncheckedCreateInput Yes

Output

Type: Edition
Required: Yes
List: No

delete

Delete one Edition

// Delete one Edition
const Edition = await prisma.edition.delete({
  where: {
    // ... filter to delete one Edition
  }
})

Input

Name Type Required
where EditionWhereUniqueInput Yes

Output

Type: Edition
Required: No
List: No

update

Update one Edition

// Update one Edition
const edition = await prisma.edition.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EditionUpdateInput | EditionUncheckedUpdateInput Yes
where EditionWhereUniqueInput Yes

Output

Type: Edition
Required: No
List: No

deleteMany

Delete zero or more Edition

// Delete a few Edition
const { count } = await prisma.edition.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EditionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Edition

const { count } = await prisma.edition.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EditionUpdateManyMutationInput | EditionUncheckedUpdateManyInput Yes
where EditionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Edition

// Update or create a Edition
const edition = await prisma.edition.upsert({
  create: {
    // ... data to create a Edition
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Edition we want to update
  }
})

Input

Name Type Required
where EditionWhereUniqueInput Yes
create EditionCreateInput | EditionUncheckedCreateInput Yes
update EditionUpdateInput | EditionUncheckedUpdateInput Yes

Output

Type: Edition
Required: Yes
List: No

CloudFile

Description: @@deny('read', deletedAt != null)
Name Value
@@unique
  • region
  • bucket
  • key
@@index
  • region
  • bucket
  • key

Fields

Name Type Attributes Required Comment
filename String
  • -
Yes File name
stem String
  • -
Yes Filename without extension
extension String
  • -
Yes @length(1, 7) File extension
size Int
  • -
Yes @gt(0) Filesize in bytes
mime String
  • -
Yes File MIME type
resourceType FileResourceType
  • -
Yes Generic version of MIME
metadata Json
  • @default({})
Yes Consolidated embedded metadata associated with the file. It includes exif, iptc, and xmp data. @zod.custom.use(z.record(z.union([z.string(), z.number()])))
key String
  • -
Yes -
bucket String
  • -
Yes S3 Key
region CloudFileRegion
  • -
Yes S3 Bucket
publicUrl String?
  • @unique
No @url
privacy FilePrivacy
  • @default(private)
Yes Privacy on blob store
photo Photo?
  • -
No -
pdf PDF?
  • -
No -
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
deletedAt DateTime?
  • -
No -
zenstack_guard Boolean
  • @default(true)
Yes -
zenstack_transaction String?
  • -
No -

Operations

findUnique

Find zero or one CloudFile

// Get one CloudFile
const cloudFile = await prisma.cloudFile.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CloudFileWhereUniqueInput Yes

Output

Type: CloudFile
Required: No
List: No

findFirst

Find first CloudFile

// Get one CloudFile
const cloudFile = await prisma.cloudFile.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CloudFileWhereInput No
orderBy CloudFileOrderByWithRelationInput[] | CloudFileOrderByWithRelationInput No
cursor CloudFileWhereUniqueInput No
take Int No
skip Int No
distinct CloudFileScalarFieldEnum[] No

Output

Type: CloudFile
Required: No
List: No

findMany

Find zero or more CloudFile

// Get all CloudFile
const CloudFile = await prisma.cloudFile.findMany()
// Get first 10 CloudFile
const CloudFile = await prisma.cloudFile.findMany({ take: 10 })

Input

Name Type Required
where CloudFileWhereInput No
orderBy CloudFileOrderByWithRelationInput[] | CloudFileOrderByWithRelationInput No
cursor CloudFileWhereUniqueInput No
take Int No
skip Int No
distinct CloudFileScalarFieldEnum[] No

Output

Type: CloudFile
Required: Yes
List: Yes

create

Create one CloudFile

// Create one CloudFile
const CloudFile = await prisma.cloudFile.create({
  data: {
    // ... data to create a CloudFile
  }
})

Input

Name Type Required
data CloudFileCreateInput | CloudFileUncheckedCreateInput Yes

Output

Type: CloudFile
Required: Yes
List: No

delete

Delete one CloudFile

// Delete one CloudFile
const CloudFile = await prisma.cloudFile.delete({
  where: {
    // ... filter to delete one CloudFile
  }
})

Input

Name Type Required
where CloudFileWhereUniqueInput Yes

Output

Type: CloudFile
Required: No
List: No

update

Update one CloudFile

// Update one CloudFile
const cloudFile = await prisma.cloudFile.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CloudFileUpdateInput | CloudFileUncheckedUpdateInput Yes
where CloudFileWhereUniqueInput Yes

Output

Type: CloudFile
Required: No
List: No

deleteMany

Delete zero or more CloudFile

// Delete a few CloudFile
const { count } = await prisma.cloudFile.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CloudFileWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one CloudFile

const { count } = await prisma.cloudFile.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CloudFileUpdateManyMutationInput | CloudFileUncheckedUpdateManyInput Yes
where CloudFileWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one CloudFile

// Update or create a CloudFile
const cloudFile = await prisma.cloudFile.upsert({
  create: {
    // ... data to create a CloudFile
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the CloudFile we want to update
  }
})

Input

Name Type Required
where CloudFileWhereUniqueInput Yes
create CloudFileCreateInput | CloudFileUncheckedCreateInput Yes
update CloudFileUpdateInput | CloudFileUncheckedUpdateInput Yes

Output

Type: CloudFile
Required: Yes
List: No

Photo

Description: @@deny('read', deletedAt != null)

Fields

Name Type Attributes Required Comment
height Int
  • -
Yes @gt(0)
width Int
  • -
Yes @gt(0)
tags String[]
  • @default([])
Yes -
fileId String
  • @unique
Yes -
file CloudFile
  • -
Yes -
pageArtworks PageArtwork[]
  • -
Yes -
concepts Concept[]
  • -
Yes -
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
deletedAt DateTime?
  • -
No -
zenstack_guard Boolean
  • @default(true)
Yes -
zenstack_transaction String?
  • -
No -

Operations

findUnique

Find zero or one Photo

// Get one Photo
const photo = await prisma.photo.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PhotoWhereUniqueInput Yes

Output

Type: Photo
Required: No
List: No

findFirst

Find first Photo

// Get one Photo
const photo = await prisma.photo.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PhotoWhereInput No
orderBy PhotoOrderByWithRelationInput[] | PhotoOrderByWithRelationInput No
cursor PhotoWhereUniqueInput No
take Int No
skip Int No
distinct PhotoScalarFieldEnum[] No

Output

Type: Photo
Required: No
List: No

findMany

Find zero or more Photo

// Get all Photo
const Photo = await prisma.photo.findMany()
// Get first 10 Photo
const Photo = await prisma.photo.findMany({ take: 10 })

Input

Name Type Required
where PhotoWhereInput No
orderBy PhotoOrderByWithRelationInput[] | PhotoOrderByWithRelationInput No
cursor PhotoWhereUniqueInput No
take Int No
skip Int No
distinct PhotoScalarFieldEnum[] No

Output

Type: Photo
Required: Yes
List: Yes

create

Create one Photo

// Create one Photo
const Photo = await prisma.photo.create({
  data: {
    // ... data to create a Photo
  }
})

Input

Name Type Required
data PhotoCreateInput | PhotoUncheckedCreateInput Yes

Output

Type: Photo
Required: Yes
List: No

delete

Delete one Photo

// Delete one Photo
const Photo = await prisma.photo.delete({
  where: {
    // ... filter to delete one Photo
  }
})

Input

Name Type Required
where PhotoWhereUniqueInput Yes

Output

Type: Photo
Required: No
List: No

update

Update one Photo

// Update one Photo
const photo = await prisma.photo.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PhotoUpdateInput | PhotoUncheckedUpdateInput Yes
where PhotoWhereUniqueInput Yes

Output

Type: Photo
Required: No
List: No

deleteMany

Delete zero or more Photo

// Delete a few Photo
const { count } = await prisma.photo.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PhotoWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Photo

const { count } = await prisma.photo.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PhotoUpdateManyMutationInput | PhotoUncheckedUpdateManyInput Yes
where PhotoWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Photo

// Update or create a Photo
const photo = await prisma.photo.upsert({
  create: {
    // ... data to create a Photo
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Photo we want to update
  }
})

Input

Name Type Required
where PhotoWhereUniqueInput Yes
create PhotoCreateInput | PhotoUncheckedCreateInput Yes
update PhotoUpdateInput | PhotoUncheckedUpdateInput Yes

Output

Type: Photo
Required: Yes
List: No

PDF

Description: @@deny('read', deletedAt != null)

Fields

Name Type Attributes Required Comment
height Int
  • -
Yes @gt(0)
width Int
  • -
Yes @gt(0)
pages Int
  • -
Yes @gt(0)
tags String[]
  • -
Yes -
fileId String
  • @unique
Yes -
file CloudFile
  • -
Yes -
edition Edition?
  • -
No -
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
deletedAt DateTime?
  • -
No -
zenstack_guard Boolean
  • @default(true)
Yes -
zenstack_transaction String?
  • -
No -

Operations

findUnique

Find zero or one PDF

// Get one PDF
const pDF = await prisma.pDF.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PDFWhereUniqueInput Yes

Output

Type: PDF
Required: No
List: No

findFirst

Find first PDF

// Get one PDF
const pDF = await prisma.pDF.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PDFWhereInput No
orderBy PDFOrderByWithRelationInput[] | PDFOrderByWithRelationInput No
cursor PDFWhereUniqueInput No
take Int No
skip Int No
distinct PDFScalarFieldEnum[] No

Output

Type: PDF
Required: No
List: No

findMany

Find zero or more PDF

// Get all PDF
const PDF = await prisma.pDF.findMany()
// Get first 10 PDF
const PDF = await prisma.pDF.findMany({ take: 10 })

Input

Name Type Required
where PDFWhereInput No
orderBy PDFOrderByWithRelationInput[] | PDFOrderByWithRelationInput No
cursor PDFWhereUniqueInput No
take Int No
skip Int No
distinct PDFScalarFieldEnum[] No

Output

Type: PDF
Required: Yes
List: Yes

create

Create one PDF

// Create one PDF
const PDF = await prisma.pDF.create({
  data: {
    // ... data to create a PDF
  }
})

Input

Name Type Required
data PDFCreateInput | PDFUncheckedCreateInput Yes

Output

Type: PDF
Required: Yes
List: No

delete

Delete one PDF

// Delete one PDF
const PDF = await prisma.pDF.delete({
  where: {
    // ... filter to delete one PDF
  }
})

Input

Name Type Required
where PDFWhereUniqueInput Yes

Output

Type: PDF
Required: No
List: No

update

Update one PDF

// Update one PDF
const pDF = await prisma.pDF.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PDFUpdateInput | PDFUncheckedUpdateInput Yes
where PDFWhereUniqueInput Yes

Output

Type: PDF
Required: No
List: No

deleteMany

Delete zero or more PDF

// Delete a few PDF
const { count } = await prisma.pDF.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PDFWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one PDF

const { count } = await prisma.pDF.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PDFUpdateManyMutationInput | PDFUncheckedUpdateManyInput Yes
where PDFWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one PDF

// Update or create a PDF
const pDF = await prisma.pDF.upsert({
  create: {
    // ... data to create a PDF
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PDF we want to update
  }
})

Input

Name Type Required
where PDFWhereUniqueInput Yes
create PDFCreateInput | PDFUncheckedCreateInput Yes
update PDFUpdateInput | PDFUncheckedUpdateInput Yes

Output

Type: PDF
Required: Yes
List: No

Story

Description: @@deny('read', deletedAt != null)

Fields

Name Type Attributes Required Comment
artistId String?
  • -
No -
authorId String?
  • -
No -
artist Artist?
  • -
No -
author Author?
  • -
No -
pages Page[]
  • -
Yes -
pageArtworks PageArtwork[]
  • -
Yes -
pageTexts PageText[]
  • -
Yes -
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
deletedAt DateTime?
  • -
No -
zenstack_guard Boolean
  • @default(true)
Yes -
zenstack_transaction String?
  • -
No -

Operations

findUnique

Find zero or one Story

// Get one Story
const story = await prisma.story.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where StoryWhereUniqueInput Yes

Output

Type: Story
Required: No
List: No

findFirst

Find first Story

// Get one Story
const story = await prisma.story.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where StoryWhereInput No
orderBy StoryOrderByWithRelationInput[] | StoryOrderByWithRelationInput No
cursor StoryWhereUniqueInput No
take Int No
skip Int No
distinct StoryScalarFieldEnum[] No

Output

Type: Story
Required: No
List: No

findMany

Find zero or more Story

// Get all Story
const Story = await prisma.story.findMany()
// Get first 10 Story
const Story = await prisma.story.findMany({ take: 10 })

Input

Name Type Required
where StoryWhereInput No
orderBy StoryOrderByWithRelationInput[] | StoryOrderByWithRelationInput No
cursor StoryWhereUniqueInput No
take Int No
skip Int No
distinct StoryScalarFieldEnum[] No

Output

Type: Story
Required: Yes
List: Yes

create

Create one Story

// Create one Story
const Story = await prisma.story.create({
  data: {
    // ... data to create a Story
  }
})

Input

Name Type Required
data StoryCreateInput | StoryUncheckedCreateInput Yes

Output

Type: Story
Required: Yes
List: No

delete

Delete one Story

// Delete one Story
const Story = await prisma.story.delete({
  where: {
    // ... filter to delete one Story
  }
})

Input

Name Type Required
where StoryWhereUniqueInput Yes

Output

Type: Story
Required: No
List: No

update

Update one Story

// Update one Story
const story = await prisma.story.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data StoryUpdateInput | StoryUncheckedUpdateInput Yes
where StoryWhereUniqueInput Yes

Output

Type: Story
Required: No
List: No

deleteMany

Delete zero or more Story

// Delete a few Story
const { count } = await prisma.story.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where StoryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Story

const { count } = await prisma.story.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data StoryUpdateManyMutationInput | StoryUncheckedUpdateManyInput Yes
where StoryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Story

// Update or create a Story
const story = await prisma.story.upsert({
  create: {
    // ... data to create a Story
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Story we want to update
  }
})

Input

Name Type Required
where StoryWhereUniqueInput Yes
create StoryCreateInput | StoryUncheckedCreateInput Yes
update StoryUpdateInput | StoryUncheckedUpdateInput Yes

Output

Type: Story
Required: Yes
List: No

PageArtwork

Description: @@deny('read', deletedAt != null)

Fields

Name Type Attributes Required Comment
status PageStatus
  • @default(DRAFT)
Yes -
pageId String
  • -
Yes -
storyId String
  • -
Yes -
artistId String
  • -
Yes -
photoId String
  • -
Yes -
page Page
  • -
Yes -
story Story
  • -
Yes -
artist Artist
  • -
Yes -
photo Photo
  • -
Yes -
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
deletedAt DateTime?
  • -
No -
zenstack_guard Boolean
  • @default(true)
Yes -
zenstack_transaction String?
  • -
No -

Operations

findUnique

Find zero or one PageArtwork

// Get one PageArtwork
const pageArtwork = await prisma.pageArtwork.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PageArtworkWhereUniqueInput Yes

Output

Type: PageArtwork
Required: No
List: No

findFirst

Find first PageArtwork

// Get one PageArtwork
const pageArtwork = await prisma.pageArtwork.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PageArtworkWhereInput No
orderBy PageArtworkOrderByWithRelationInput[] | PageArtworkOrderByWithRelationInput No
cursor PageArtworkWhereUniqueInput No
take Int No
skip Int No
distinct PageArtworkScalarFieldEnum[] No

Output

Type: PageArtwork
Required: No
List: No

findMany

Find zero or more PageArtwork

// Get all PageArtwork
const PageArtwork = await prisma.pageArtwork.findMany()
// Get first 10 PageArtwork
const PageArtwork = await prisma.pageArtwork.findMany({ take: 10 })

Input

Name Type Required
where PageArtworkWhereInput No
orderBy PageArtworkOrderByWithRelationInput[] | PageArtworkOrderByWithRelationInput No
cursor PageArtworkWhereUniqueInput No
take Int No
skip Int No
distinct PageArtworkScalarFieldEnum[] No

Output

Type: PageArtwork
Required: Yes
List: Yes

create

Create one PageArtwork

// Create one PageArtwork
const PageArtwork = await prisma.pageArtwork.create({
  data: {
    // ... data to create a PageArtwork
  }
})

Input

Name Type Required
data PageArtworkCreateInput | PageArtworkUncheckedCreateInput Yes

Output

Type: PageArtwork
Required: Yes
List: No

delete

Delete one PageArtwork

// Delete one PageArtwork
const PageArtwork = await prisma.pageArtwork.delete({
  where: {
    // ... filter to delete one PageArtwork
  }
})

Input

Name Type Required
where PageArtworkWhereUniqueInput Yes

Output

Type: PageArtwork
Required: No
List: No

update

Update one PageArtwork

// Update one PageArtwork
const pageArtwork = await prisma.pageArtwork.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PageArtworkUpdateInput | PageArtworkUncheckedUpdateInput Yes
where PageArtworkWhereUniqueInput Yes

Output

Type: PageArtwork
Required: No
List: No

deleteMany

Delete zero or more PageArtwork

// Delete a few PageArtwork
const { count } = await prisma.pageArtwork.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PageArtworkWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one PageArtwork

const { count } = await prisma.pageArtwork.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PageArtworkUpdateManyMutationInput | PageArtworkUncheckedUpdateManyInput Yes
where PageArtworkWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one PageArtwork

// Update or create a PageArtwork
const pageArtwork = await prisma.pageArtwork.upsert({
  create: {
    // ... data to create a PageArtwork
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PageArtwork we want to update
  }
})

Input

Name Type Required
where PageArtworkWhereUniqueInput Yes
create PageArtworkCreateInput | PageArtworkUncheckedCreateInput Yes
update PageArtworkUpdateInput | PageArtworkUncheckedUpdateInput Yes

Output

Type: PageArtwork
Required: Yes
List: No

PageText

Description: @@deny('read', deletedAt != null)

Fields

Name Type Attributes Required Comment
status PageStatus
  • @default(DRAFT)
Yes -
locale Locale
  • -
Yes -
text String
  • -
Yes @length(1, 5000)
type PageTextType
  • -
Yes -
pageId String
  • -
Yes -
storyId String
  • -
Yes -
authorId String?
  • -
No -
translatorId String?
  • -
No -
page Page
  • -
Yes -
story Story
  • -
Yes -
author Author?
  • -
No -
translator Translator?
  • -
No -
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
deletedAt DateTime?
  • -
No -
zenstack_guard Boolean
  • @default(true)
Yes -
zenstack_transaction String?
  • -
No -

Operations

findUnique

Find zero or one PageText

// Get one PageText
const pageText = await prisma.pageText.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PageTextWhereUniqueInput Yes

Output

Type: PageText
Required: No
List: No

findFirst

Find first PageText

// Get one PageText
const pageText = await prisma.pageText.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PageTextWhereInput No
orderBy PageTextOrderByWithRelationInput[] | PageTextOrderByWithRelationInput No
cursor PageTextWhereUniqueInput No
take Int No
skip Int No
distinct PageTextScalarFieldEnum[] No

Output

Type: PageText
Required: No
List: No

findMany

Find zero or more PageText

// Get all PageText
const PageText = await prisma.pageText.findMany()
// Get first 10 PageText
const PageText = await prisma.pageText.findMany({ take: 10 })

Input

Name Type Required
where PageTextWhereInput No
orderBy PageTextOrderByWithRelationInput[] | PageTextOrderByWithRelationInput No
cursor PageTextWhereUniqueInput No
take Int No
skip Int No
distinct PageTextScalarFieldEnum[] No

Output

Type: PageText
Required: Yes
List: Yes

create

Create one PageText

// Create one PageText
const PageText = await prisma.pageText.create({
  data: {
    // ... data to create a PageText
  }
})

Input

Name Type Required
data PageTextCreateInput | PageTextUncheckedCreateInput Yes

Output

Type: PageText
Required: Yes
List: No

delete

Delete one PageText

// Delete one PageText
const PageText = await prisma.pageText.delete({
  where: {
    // ... filter to delete one PageText
  }
})

Input

Name Type Required
where PageTextWhereUniqueInput Yes

Output

Type: PageText
Required: No
List: No

update

Update one PageText

// Update one PageText
const pageText = await prisma.pageText.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PageTextUpdateInput | PageTextUncheckedUpdateInput Yes
where PageTextWhereUniqueInput Yes

Output

Type: PageText
Required: No
List: No

deleteMany

Delete zero or more PageText

// Delete a few PageText
const { count } = await prisma.pageText.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PageTextWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one PageText

const { count } = await prisma.pageText.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PageTextUpdateManyMutationInput | PageTextUncheckedUpdateManyInput Yes
where PageTextWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one PageText

// Update or create a PageText
const pageText = await prisma.pageText.upsert({
  create: {
    // ... data to create a PageText
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PageText we want to update
  }
})

Input

Name Type Required
where PageTextWhereUniqueInput Yes
create PageTextCreateInput | PageTextUncheckedCreateInput Yes
update PageTextUpdateInput | PageTextUncheckedUpdateInput Yes

Output

Type: PageText
Required: Yes
List: No

Page

Description: @@deny('read', deletedAt != null)

Fields

Name Type Attributes Required Comment
status PageStatus
  • @default(DRAFT)
Yes -
type PageType
  • -
Yes -
pageNumber Int
  • -
Yes @gte(1) @lte(100)
storyId String
  • -
Yes -
story Story
  • -
Yes -
artworks PageArtwork[]
  • -
Yes -
texts PageText[]
  • -
Yes -
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
deletedAt DateTime?
  • -
No -
zenstack_guard Boolean
  • @default(true)
Yes -
zenstack_transaction String?
  • -
No -

Operations

findUnique

Find zero or one Page

// Get one Page
const page = await prisma.page.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PageWhereUniqueInput Yes

Output

Type: Page
Required: No
List: No

findFirst

Find first Page

// Get one Page
const page = await prisma.page.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PageWhereInput No
orderBy PageOrderByWithRelationInput[] | PageOrderByWithRelationInput No
cursor PageWhereUniqueInput No
take Int No
skip Int No
distinct PageScalarFieldEnum[] No

Output

Type: Page
Required: No
List: No

findMany

Find zero or more Page

// Get all Page
const Page = await prisma.page.findMany()
// Get first 10 Page
const Page = await prisma.page.findMany({ take: 10 })

Input

Name Type Required
where PageWhereInput No
orderBy PageOrderByWithRelationInput[] | PageOrderByWithRelationInput No
cursor PageWhereUniqueInput No
take Int No
skip Int No
distinct PageScalarFieldEnum[] No

Output

Type: Page
Required: Yes
List: Yes

create

Create one Page

// Create one Page
const Page = await prisma.page.create({
  data: {
    // ... data to create a Page
  }
})

Input

Name Type Required
data PageCreateInput | PageUncheckedCreateInput Yes

Output

Type: Page
Required: Yes
List: No

delete

Delete one Page

// Delete one Page
const Page = await prisma.page.delete({
  where: {
    // ... filter to delete one Page
  }
})

Input

Name Type Required
where PageWhereUniqueInput Yes

Output

Type: Page
Required: No
List: No

update

Update one Page

// Update one Page
const page = await prisma.page.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PageUpdateInput | PageUncheckedUpdateInput Yes
where PageWhereUniqueInput Yes

Output

Type: Page
Required: No
List: No

deleteMany

Delete zero or more Page

// Delete a few Page
const { count } = await prisma.page.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PageWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Page

const { count } = await prisma.page.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PageUpdateManyMutationInput | PageUncheckedUpdateManyInput Yes
where PageWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Page

// Update or create a Page
const page = await prisma.page.upsert({
  create: {
    // ... data to create a Page
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Page we want to update
  }
})

Input

Name Type Required
where PageWhereUniqueInput Yes
create PageCreateInput | PageUncheckedCreateInput Yes
update PageUpdateInput | PageUncheckedUpdateInput Yes

Output

Type: Page
Required: Yes
List: No

Types

Input Types

UserWhereInput

Name Type Nullable
AND UserWhereInput | UserWhereInput[] No
OR UserWhereInput[] No
NOT UserWhereInput | UserWhereInput[] No
name StringFilter | String No
email StringFilter | String No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes
artist ArtistRelationFilter | ArtistWhereInput | Null Yes
author AuthorRelationFilter | AuthorWhereInput | Null Yes
editions EditionListRelationFilter No

UserOrderByWithRelationInput

Name Type Nullable
name SortOrder No
email SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
artist ArtistOrderByWithRelationInput No
author AuthorOrderByWithRelationInput No
editions EditionOrderByRelationAggregateInput No

UserWhereUniqueInput

Name Type Nullable
email String No
id String No

UserOrderByWithAggregationInput

Name Type Nullable
name SortOrder No
email SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
_count UserCountOrderByAggregateInput No
_max UserMaxOrderByAggregateInput No
_min UserMinOrderByAggregateInput No

UserScalarWhereWithAggregatesInput

Name Type Nullable
AND UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] No
OR UserScalarWhereWithAggregatesInput[] No
NOT UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] No
name StringWithAggregatesFilter | String No
email StringWithAggregatesFilter | String No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
deletedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
zenstack_guard BoolWithAggregatesFilter | Boolean No
zenstack_transaction StringNullableWithAggregatesFilter | String | Null Yes

AuthorWhereInput

Name Type Nullable
AND AuthorWhereInput | AuthorWhereInput[] No
OR AuthorWhereInput[] No
NOT AuthorWhereInput | AuthorWhereInput[] No
userId StringFilter | String No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes
stories StoryListRelationFilter No
pageTexts PageTextListRelationFilter No
user UserRelationFilter | UserWhereInput No

AuthorOrderByWithRelationInput

Name Type Nullable
userId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
stories StoryOrderByRelationAggregateInput No
pageTexts PageTextOrderByRelationAggregateInput No
user UserOrderByWithRelationInput No

AuthorWhereUniqueInput

Name Type Nullable
userId String No
id String No

AuthorOrderByWithAggregationInput

Name Type Nullable
userId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
_count AuthorCountOrderByAggregateInput No
_max AuthorMaxOrderByAggregateInput No
_min AuthorMinOrderByAggregateInput No

AuthorScalarWhereWithAggregatesInput

Name Type Nullable
AND AuthorScalarWhereWithAggregatesInput | AuthorScalarWhereWithAggregatesInput[] No
OR AuthorScalarWhereWithAggregatesInput[] No
NOT AuthorScalarWhereWithAggregatesInput | AuthorScalarWhereWithAggregatesInput[] No
userId StringWithAggregatesFilter | String No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
deletedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
zenstack_guard BoolWithAggregatesFilter | Boolean No
zenstack_transaction StringNullableWithAggregatesFilter | String | Null Yes

ArtistWhereInput

Name Type Nullable
AND ArtistWhereInput | ArtistWhereInput[] No
OR ArtistWhereInput[] No
NOT ArtistWhereInput | ArtistWhereInput[] No
userId StringFilter | String No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes
stories StoryListRelationFilter No
pageArtworks PageArtworkListRelationFilter No
user UserRelationFilter | UserWhereInput No

ArtistOrderByWithRelationInput

Name Type Nullable
userId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
stories StoryOrderByRelationAggregateInput No
pageArtworks PageArtworkOrderByRelationAggregateInput No
user UserOrderByWithRelationInput No

ArtistWhereUniqueInput

Name Type Nullable
userId String No
id String No

ArtistOrderByWithAggregationInput

Name Type Nullable
userId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
_count ArtistCountOrderByAggregateInput No
_max ArtistMaxOrderByAggregateInput No
_min ArtistMinOrderByAggregateInput No

ArtistScalarWhereWithAggregatesInput

Name Type Nullable
AND ArtistScalarWhereWithAggregatesInput | ArtistScalarWhereWithAggregatesInput[] No
OR ArtistScalarWhereWithAggregatesInput[] No
NOT ArtistScalarWhereWithAggregatesInput | ArtistScalarWhereWithAggregatesInput[] No
userId StringWithAggregatesFilter | String No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
deletedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
zenstack_guard BoolWithAggregatesFilter | Boolean No
zenstack_transaction StringNullableWithAggregatesFilter | String | Null Yes

TranslatorWhereInput

Name Type Nullable
AND TranslatorWhereInput | TranslatorWhereInput[] No
OR TranslatorWhereInput[] No
NOT TranslatorWhereInput | TranslatorWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes
pageTexts PageTextListRelationFilter No

TranslatorOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
pageTexts PageTextOrderByRelationAggregateInput No

TranslatorWhereUniqueInput

Name Type Nullable
id String No

TranslatorOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
_count TranslatorCountOrderByAggregateInput No
_max TranslatorMaxOrderByAggregateInput No
_min TranslatorMinOrderByAggregateInput No

TranslatorScalarWhereWithAggregatesInput

Name Type Nullable
AND TranslatorScalarWhereWithAggregatesInput | TranslatorScalarWhereWithAggregatesInput[] No
OR TranslatorScalarWhereWithAggregatesInput[] No
NOT TranslatorScalarWhereWithAggregatesInput | TranslatorScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
deletedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
zenstack_guard BoolWithAggregatesFilter | Boolean No
zenstack_transaction StringNullableWithAggregatesFilter | String | Null Yes

ConceptWhereInput

Name Type Nullable
AND ConceptWhereInput | ConceptWhereInput[] No
OR ConceptWhereInput[] No
NOT ConceptWhereInput | ConceptWhereInput[] No
name StringFilter | String No
type EnumConceptTypeFilter | ConceptType No
status EnumConceptStatusFilter | ConceptStatus No
description StringNullableFilter | String | Null Yes
prompt StringFilter | String No
identifier StringFilter | String No
classNoun StringFilter | String No
negativePrompt StringFilter | String No
instancePrompt StringFilter | String No
classPrompt StringFilter | String No
positivePrompts StringNullableListFilter No
negativePrompts StringNullableListFilter No
dreamboothTrainingId StringNullableFilter | String | Null Yes
dreamboothModelURI StringNullableFilter | String | Null Yes
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes
dreamboothTraining DreamBoothTrainingRelationFilter | DreamBoothTrainingWhereInput | Null Yes
photos PhotoListRelationFilter No

ConceptOrderByWithRelationInput

Name Type Nullable
name SortOrder No
type SortOrder No
status SortOrder No
description SortOrder No
prompt SortOrder No
identifier SortOrder No
classNoun SortOrder No
negativePrompt SortOrder No
instancePrompt SortOrder No
classPrompt SortOrder No
positivePrompts SortOrder No
negativePrompts SortOrder No
dreamboothTrainingId SortOrder No
dreamboothModelURI SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
dreamboothTraining DreamBoothTrainingOrderByWithRelationInput No
photos PhotoOrderByRelationAggregateInput No

ConceptWhereUniqueInput

Name Type Nullable
id String No

ConceptOrderByWithAggregationInput

Name Type Nullable
name SortOrder No
type SortOrder No
status SortOrder No
description SortOrder No
prompt SortOrder No
identifier SortOrder No
classNoun SortOrder No
negativePrompt SortOrder No
instancePrompt SortOrder No
classPrompt SortOrder No
positivePrompts SortOrder No
negativePrompts SortOrder No
dreamboothTrainingId SortOrder No
dreamboothModelURI SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
_count ConceptCountOrderByAggregateInput No
_max ConceptMaxOrderByAggregateInput No
_min ConceptMinOrderByAggregateInput No

ConceptScalarWhereWithAggregatesInput

Name Type Nullable
AND ConceptScalarWhereWithAggregatesInput | ConceptScalarWhereWithAggregatesInput[] No
OR ConceptScalarWhereWithAggregatesInput[] No
NOT ConceptScalarWhereWithAggregatesInput | ConceptScalarWhereWithAggregatesInput[] No
name StringWithAggregatesFilter | String No
type EnumConceptTypeWithAggregatesFilter | ConceptType No
status EnumConceptStatusWithAggregatesFilter | ConceptStatus No
description StringNullableWithAggregatesFilter | String | Null Yes
prompt StringWithAggregatesFilter | String No
identifier StringWithAggregatesFilter | String No
classNoun StringWithAggregatesFilter | String No
negativePrompt StringWithAggregatesFilter | String No
instancePrompt StringWithAggregatesFilter | String No
classPrompt StringWithAggregatesFilter | String No
positivePrompts StringNullableListFilter No
negativePrompts StringNullableListFilter No
dreamboothTrainingId StringNullableWithAggregatesFilter | String | Null Yes
dreamboothModelURI StringNullableWithAggregatesFilter | String | Null Yes
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
deletedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
zenstack_guard BoolWithAggregatesFilter | Boolean No
zenstack_transaction StringNullableWithAggregatesFilter | String | Null Yes

PredictionWhereInput

Name Type Nullable
AND PredictionWhereInput | PredictionWhereInput[] No
OR PredictionWhereInput[] No
NOT PredictionWhereInput | PredictionWhereInput[] No
id StringFilter | String No
uuid StringFilter | String No
input JsonNullableFilter No
output JsonNullableFilter No
status StringNullableFilter | String | Null Yes
created_at DateTimeNullableFilter | DateTime | Null Yes
started_at DateTimeNullableFilter | DateTime | Null Yes
completed_at DateTimeNullableFilter | DateTime | Null Yes
version StringNullableFilter | String | Null Yes
metrics JsonNullableFilter No
error StringNullableFilter | String | Null Yes
logs StringNullableFilter | String | Null Yes

PredictionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
input SortOrder No
output SortOrder No
status SortOrder No
created_at SortOrder No
started_at SortOrder No
completed_at SortOrder No
version SortOrder No
metrics SortOrder No
error SortOrder No
logs SortOrder No

PredictionWhereUniqueInput

Name Type Nullable
id String No
uuid String No

PredictionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
input SortOrder No
output SortOrder No
status SortOrder No
created_at SortOrder No
started_at SortOrder No
completed_at SortOrder No
version SortOrder No
metrics SortOrder No
error SortOrder No
logs SortOrder No
_count PredictionCountOrderByAggregateInput No
_max PredictionMaxOrderByAggregateInput No
_min PredictionMinOrderByAggregateInput No

PredictionScalarWhereWithAggregatesInput

Name Type Nullable
AND PredictionScalarWhereWithAggregatesInput | PredictionScalarWhereWithAggregatesInput[] No
OR PredictionScalarWhereWithAggregatesInput[] No
NOT PredictionScalarWhereWithAggregatesInput | PredictionScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
uuid StringWithAggregatesFilter | String No
input JsonNullableWithAggregatesFilter No
output JsonNullableWithAggregatesFilter No
status StringNullableWithAggregatesFilter | String | Null Yes
created_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
started_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
completed_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
version StringNullableWithAggregatesFilter | String | Null Yes
metrics JsonNullableWithAggregatesFilter No
error StringNullableWithAggregatesFilter | String | Null Yes
logs StringNullableWithAggregatesFilter | String | Null Yes

DreamBoothTrainingWhereInput

Name Type Nullable
AND DreamBoothTrainingWhereInput | DreamBoothTrainingWhereInput[] No
OR DreamBoothTrainingWhereInput[] No
NOT DreamBoothTrainingWhereInput | DreamBoothTrainingWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
instance_prompt StringFilter | String No
class_prompt StringFilter | String No
instance_data StringFilter | String No
class_data StringFilter | String No
num_class_images IntFilter | Int No
save_sample_prompt StringNullableFilter | String | Null Yes
save_sample_negative_prompt StringNullableFilter | String | Null Yes
n_save_sample IntFilter | Int No
save_guidance_scale FloatFilter | Float No
save_infer_steps IntFilter | Int No
pad_tokens BoolFilter | Boolean No
with_prior_preservation BoolFilter | Boolean No
prior_loss_weight FloatFilter | Float No
seed IntFilter | Int No
resolution IntFilter | Int No
center_crop BoolFilter | Boolean No
train_text_encoder BoolFilter | Boolean No
train_batch_size IntFilter | Int No
sample_batch_size IntFilter | Int No
num_train_epochs IntFilter | Int No
max_train_steps IntFilter | Int No
gradient_accumulation_steps IntFilter | Int No
gradient_checkpointing BoolFilter | Boolean No
learning_rate FloatFilter | Float No
scale_lr BoolFilter | Boolean No
lr_scheduler EnumLRSchedulerFilter | LRScheduler No
lr_warmup_steps IntFilter | Int No
use_8bit_adam BoolFilter | Boolean No
adam_beta1 FloatFilter | Float No
adam_beta2 FloatFilter | Float No
adam_weight_decay FloatFilter | Float No
adam_epsilon FloatFilter | Float No
max_grad_norm FloatFilter | Float No
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes
Concept ConceptListRelationFilter No

DreamBoothTrainingOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
instance_prompt SortOrder No
class_prompt SortOrder No
instance_data SortOrder No
class_data SortOrder No
num_class_images SortOrder No
save_sample_prompt SortOrder No
save_sample_negative_prompt SortOrder No
n_save_sample SortOrder No
save_guidance_scale SortOrder No
save_infer_steps SortOrder No
pad_tokens SortOrder No
with_prior_preservation SortOrder No
prior_loss_weight SortOrder No
seed SortOrder No
resolution SortOrder No
center_crop SortOrder No
train_text_encoder SortOrder No
train_batch_size SortOrder No
sample_batch_size SortOrder No
num_train_epochs SortOrder No
max_train_steps SortOrder No
gradient_accumulation_steps SortOrder No
gradient_checkpointing SortOrder No
learning_rate SortOrder No
scale_lr SortOrder No
lr_scheduler SortOrder No
lr_warmup_steps SortOrder No
use_8bit_adam SortOrder No
adam_beta1 SortOrder No
adam_beta2 SortOrder No
adam_weight_decay SortOrder No
adam_epsilon SortOrder No
max_grad_norm SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
Concept ConceptOrderByRelationAggregateInput No

DreamBoothTrainingWhereUniqueInput

Name Type Nullable
id String No

DreamBoothTrainingOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
instance_prompt SortOrder No
class_prompt SortOrder No
instance_data SortOrder No
class_data SortOrder No
num_class_images SortOrder No
save_sample_prompt SortOrder No
save_sample_negative_prompt SortOrder No
n_save_sample SortOrder No
save_guidance_scale SortOrder No
save_infer_steps SortOrder No
pad_tokens SortOrder No
with_prior_preservation SortOrder No
prior_loss_weight SortOrder No
seed SortOrder No
resolution SortOrder No
center_crop SortOrder No
train_text_encoder SortOrder No
train_batch_size SortOrder No
sample_batch_size SortOrder No
num_train_epochs SortOrder No
max_train_steps SortOrder No
gradient_accumulation_steps SortOrder No
gradient_checkpointing SortOrder No
learning_rate SortOrder No
scale_lr SortOrder No
lr_scheduler SortOrder No
lr_warmup_steps SortOrder No
use_8bit_adam SortOrder No
adam_beta1 SortOrder No
adam_beta2 SortOrder No
adam_weight_decay SortOrder No
adam_epsilon SortOrder No
max_grad_norm SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
_count DreamBoothTrainingCountOrderByAggregateInput No
_avg DreamBoothTrainingAvgOrderByAggregateInput No
_max DreamBoothTrainingMaxOrderByAggregateInput No
_min DreamBoothTrainingMinOrderByAggregateInput No
_sum DreamBoothTrainingSumOrderByAggregateInput No

DreamBoothTrainingScalarWhereWithAggregatesInput

Name Type Nullable
AND DreamBoothTrainingScalarWhereWithAggregatesInput | DreamBoothTrainingScalarWhereWithAggregatesInput[] No
OR DreamBoothTrainingScalarWhereWithAggregatesInput[] No
NOT DreamBoothTrainingScalarWhereWithAggregatesInput | DreamBoothTrainingScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
instance_prompt StringWithAggregatesFilter | String No
class_prompt StringWithAggregatesFilter | String No
instance_data StringWithAggregatesFilter | String No
class_data StringWithAggregatesFilter | String No
num_class_images IntWithAggregatesFilter | Int No
save_sample_prompt StringNullableWithAggregatesFilter | String | Null Yes
save_sample_negative_prompt StringNullableWithAggregatesFilter | String | Null Yes
n_save_sample IntWithAggregatesFilter | Int No
save_guidance_scale FloatWithAggregatesFilter | Float No
save_infer_steps IntWithAggregatesFilter | Int No
pad_tokens BoolWithAggregatesFilter | Boolean No
with_prior_preservation BoolWithAggregatesFilter | Boolean No
prior_loss_weight FloatWithAggregatesFilter | Float No
seed IntWithAggregatesFilter | Int No
resolution IntWithAggregatesFilter | Int No
center_crop BoolWithAggregatesFilter | Boolean No
train_text_encoder BoolWithAggregatesFilter | Boolean No
train_batch_size IntWithAggregatesFilter | Int No
sample_batch_size IntWithAggregatesFilter | Int No
num_train_epochs IntWithAggregatesFilter | Int No
max_train_steps IntWithAggregatesFilter | Int No
gradient_accumulation_steps IntWithAggregatesFilter | Int No
gradient_checkpointing BoolWithAggregatesFilter | Boolean No
learning_rate FloatWithAggregatesFilter | Float No
scale_lr BoolWithAggregatesFilter | Boolean No
lr_scheduler EnumLRSchedulerWithAggregatesFilter | LRScheduler No
lr_warmup_steps IntWithAggregatesFilter | Int No
use_8bit_adam BoolWithAggregatesFilter | Boolean No
adam_beta1 FloatWithAggregatesFilter | Float No
adam_beta2 FloatWithAggregatesFilter | Float No
adam_weight_decay FloatWithAggregatesFilter | Float No
adam_epsilon FloatWithAggregatesFilter | Float No
max_grad_norm FloatWithAggregatesFilter | Float No
zenstack_guard BoolWithAggregatesFilter | Boolean No
zenstack_transaction StringNullableWithAggregatesFilter | String | Null Yes

EditionWhereInput

Name Type Nullable
AND EditionWhereInput | EditionWhereInput[] No
OR EditionWhereInput[] No
NOT EditionWhereInput | EditionWhereInput[] No
userId StringFilter | String No
pdfId StringFilter | String No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes
user UserRelationFilter | UserWhereInput No
pdf PDFRelationFilter | PDFWhereInput No

EditionOrderByWithRelationInput

Name Type Nullable
userId SortOrder No
pdfId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
user UserOrderByWithRelationInput No
pdf PDFOrderByWithRelationInput No

EditionWhereUniqueInput

Name Type Nullable
userId String No
pdfId String No
id String No

EditionOrderByWithAggregationInput

Name Type Nullable
userId SortOrder No
pdfId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
_count EditionCountOrderByAggregateInput No
_max EditionMaxOrderByAggregateInput No
_min EditionMinOrderByAggregateInput No

EditionScalarWhereWithAggregatesInput

Name Type Nullable
AND EditionScalarWhereWithAggregatesInput | EditionScalarWhereWithAggregatesInput[] No
OR EditionScalarWhereWithAggregatesInput[] No
NOT EditionScalarWhereWithAggregatesInput | EditionScalarWhereWithAggregatesInput[] No
userId StringWithAggregatesFilter | String No
pdfId StringWithAggregatesFilter | String No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
deletedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
zenstack_guard BoolWithAggregatesFilter | Boolean No
zenstack_transaction StringNullableWithAggregatesFilter | String | Null Yes

CloudFileWhereInput

Name Type Nullable
AND CloudFileWhereInput | CloudFileWhereInput[] No
OR CloudFileWhereInput[] No
NOT CloudFileWhereInput | CloudFileWhereInput[] No
filename StringFilter | String No
stem StringFilter | String No
extension StringFilter | String No
size IntFilter | Int No
mime StringFilter | String No
resourceType EnumFileResourceTypeFilter | FileResourceType No
metadata JsonFilter No
key StringFilter | String No
bucket StringFilter | String No
region EnumCloudFileRegionFilter | CloudFileRegion No
publicUrl StringNullableFilter | String | Null Yes
privacy EnumFilePrivacyFilter | FilePrivacy No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes
photo PhotoRelationFilter | PhotoWhereInput | Null Yes
pdf PDFRelationFilter | PDFWhereInput | Null Yes

CloudFileOrderByWithRelationInput

Name Type Nullable
filename SortOrder No
stem SortOrder No
extension SortOrder No
size SortOrder No
mime SortOrder No
resourceType SortOrder No
metadata SortOrder No
key SortOrder No
bucket SortOrder No
region SortOrder No
publicUrl SortOrder No
privacy SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
photo PhotoOrderByWithRelationInput No
pdf PDFOrderByWithRelationInput No

CloudFileWhereUniqueInput

Name Type Nullable
publicUrl String No
id String No
region_bucket_key CloudFileRegionBucketKeyCompoundUniqueInput No

CloudFileOrderByWithAggregationInput

Name Type Nullable
filename SortOrder No
stem SortOrder No
extension SortOrder No
size SortOrder No
mime SortOrder No
resourceType SortOrder No
metadata SortOrder No
key SortOrder No
bucket SortOrder No
region SortOrder No
publicUrl SortOrder No
privacy SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
_count CloudFileCountOrderByAggregateInput No
_avg CloudFileAvgOrderByAggregateInput No
_max CloudFileMaxOrderByAggregateInput No
_min CloudFileMinOrderByAggregateInput No
_sum CloudFileSumOrderByAggregateInput No

CloudFileScalarWhereWithAggregatesInput

Name Type Nullable
AND CloudFileScalarWhereWithAggregatesInput | CloudFileScalarWhereWithAggregatesInput[] No
OR CloudFileScalarWhereWithAggregatesInput[] No
NOT CloudFileScalarWhereWithAggregatesInput | CloudFileScalarWhereWithAggregatesInput[] No
filename StringWithAggregatesFilter | String No
stem StringWithAggregatesFilter | String No
extension StringWithAggregatesFilter | String No
size IntWithAggregatesFilter | Int No
mime StringWithAggregatesFilter | String No
resourceType EnumFileResourceTypeWithAggregatesFilter | FileResourceType No
metadata JsonWithAggregatesFilter No
key StringWithAggregatesFilter | String No
bucket StringWithAggregatesFilter | String No
region EnumCloudFileRegionWithAggregatesFilter | CloudFileRegion No
publicUrl StringNullableWithAggregatesFilter | String | Null Yes
privacy EnumFilePrivacyWithAggregatesFilter | FilePrivacy No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
deletedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
zenstack_guard BoolWithAggregatesFilter | Boolean No
zenstack_transaction StringNullableWithAggregatesFilter | String | Null Yes

PhotoWhereInput

Name Type Nullable
AND PhotoWhereInput | PhotoWhereInput[] No
OR PhotoWhereInput[] No
NOT PhotoWhereInput | PhotoWhereInput[] No
height IntFilter | Int No
width IntFilter | Int No
tags StringNullableListFilter No
fileId StringFilter | String No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes
file CloudFileRelationFilter | CloudFileWhereInput No
pageArtworks PageArtworkListRelationFilter No
concepts ConceptListRelationFilter No

PhotoOrderByWithRelationInput

Name Type Nullable
height SortOrder No
width SortOrder No
tags SortOrder No
fileId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
file CloudFileOrderByWithRelationInput No
pageArtworks PageArtworkOrderByRelationAggregateInput No
concepts ConceptOrderByRelationAggregateInput No

PhotoWhereUniqueInput

Name Type Nullable
fileId String No
id String No

PhotoOrderByWithAggregationInput

Name Type Nullable
height SortOrder No
width SortOrder No
tags SortOrder No
fileId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
_count PhotoCountOrderByAggregateInput No
_avg PhotoAvgOrderByAggregateInput No
_max PhotoMaxOrderByAggregateInput No
_min PhotoMinOrderByAggregateInput No
_sum PhotoSumOrderByAggregateInput No

PhotoScalarWhereWithAggregatesInput

Name Type Nullable
AND PhotoScalarWhereWithAggregatesInput | PhotoScalarWhereWithAggregatesInput[] No
OR PhotoScalarWhereWithAggregatesInput[] No
NOT PhotoScalarWhereWithAggregatesInput | PhotoScalarWhereWithAggregatesInput[] No
height IntWithAggregatesFilter | Int No
width IntWithAggregatesFilter | Int No
tags StringNullableListFilter No
fileId StringWithAggregatesFilter | String No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
deletedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
zenstack_guard BoolWithAggregatesFilter | Boolean No
zenstack_transaction StringNullableWithAggregatesFilter | String | Null Yes

PDFWhereInput

Name Type Nullable
AND PDFWhereInput | PDFWhereInput[] No
OR PDFWhereInput[] No
NOT PDFWhereInput | PDFWhereInput[] No
height IntFilter | Int No
width IntFilter | Int No
pages IntFilter | Int No
tags StringNullableListFilter No
fileId StringFilter | String No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes
file CloudFileRelationFilter | CloudFileWhereInput No
edition EditionRelationFilter | EditionWhereInput | Null Yes

PDFOrderByWithRelationInput

Name Type Nullable
height SortOrder No
width SortOrder No
pages SortOrder No
tags SortOrder No
fileId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
file CloudFileOrderByWithRelationInput No
edition EditionOrderByWithRelationInput No

PDFWhereUniqueInput

Name Type Nullable
fileId String No
id String No

PDFOrderByWithAggregationInput

Name Type Nullable
height SortOrder No
width SortOrder No
pages SortOrder No
tags SortOrder No
fileId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
_count PDFCountOrderByAggregateInput No
_avg PDFAvgOrderByAggregateInput No
_max PDFMaxOrderByAggregateInput No
_min PDFMinOrderByAggregateInput No
_sum PDFSumOrderByAggregateInput No

PDFScalarWhereWithAggregatesInput

Name Type Nullable
AND PDFScalarWhereWithAggregatesInput | PDFScalarWhereWithAggregatesInput[] No
OR PDFScalarWhereWithAggregatesInput[] No
NOT PDFScalarWhereWithAggregatesInput | PDFScalarWhereWithAggregatesInput[] No
height IntWithAggregatesFilter | Int No
width IntWithAggregatesFilter | Int No
pages IntWithAggregatesFilter | Int No
tags StringNullableListFilter No
fileId StringWithAggregatesFilter | String No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
deletedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
zenstack_guard BoolWithAggregatesFilter | Boolean No
zenstack_transaction StringNullableWithAggregatesFilter | String | Null Yes

StoryWhereInput

Name Type Nullable
AND StoryWhereInput | StoryWhereInput[] No
OR StoryWhereInput[] No
NOT StoryWhereInput | StoryWhereInput[] No
artistId StringNullableFilter | String | Null Yes
authorId StringNullableFilter | String | Null Yes
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes
artist ArtistRelationFilter | ArtistWhereInput | Null Yes
author AuthorRelationFilter | AuthorWhereInput | Null Yes
pages PageListRelationFilter No
pageArtworks PageArtworkListRelationFilter No
pageTexts PageTextListRelationFilter No

StoryOrderByWithRelationInput

Name Type Nullable
artistId SortOrder No
authorId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
artist ArtistOrderByWithRelationInput No
author AuthorOrderByWithRelationInput No
pages PageOrderByRelationAggregateInput No
pageArtworks PageArtworkOrderByRelationAggregateInput No
pageTexts PageTextOrderByRelationAggregateInput No

StoryWhereUniqueInput

Name Type Nullable
id String No

StoryOrderByWithAggregationInput

Name Type Nullable
artistId SortOrder No
authorId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
_count StoryCountOrderByAggregateInput No
_max StoryMaxOrderByAggregateInput No
_min StoryMinOrderByAggregateInput No

StoryScalarWhereWithAggregatesInput

Name Type Nullable
AND StoryScalarWhereWithAggregatesInput | StoryScalarWhereWithAggregatesInput[] No
OR StoryScalarWhereWithAggregatesInput[] No
NOT StoryScalarWhereWithAggregatesInput | StoryScalarWhereWithAggregatesInput[] No
artistId StringNullableWithAggregatesFilter | String | Null Yes
authorId StringNullableWithAggregatesFilter | String | Null Yes
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
deletedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
zenstack_guard BoolWithAggregatesFilter | Boolean No
zenstack_transaction StringNullableWithAggregatesFilter | String | Null Yes

PageArtworkWhereInput

Name Type Nullable
AND PageArtworkWhereInput | PageArtworkWhereInput[] No
OR PageArtworkWhereInput[] No
NOT PageArtworkWhereInput | PageArtworkWhereInput[] No
status EnumPageStatusFilter | PageStatus No
pageId StringFilter | String No
storyId StringFilter | String No
artistId StringFilter | String No
photoId StringFilter | String No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes
page PageRelationFilter | PageWhereInput No
story StoryRelationFilter | StoryWhereInput No
artist ArtistRelationFilter | ArtistWhereInput No
photo PhotoRelationFilter | PhotoWhereInput No

PageArtworkOrderByWithRelationInput

Name Type Nullable
status SortOrder No
pageId SortOrder No
storyId SortOrder No
artistId SortOrder No
photoId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
page PageOrderByWithRelationInput No
story StoryOrderByWithRelationInput No
artist ArtistOrderByWithRelationInput No
photo PhotoOrderByWithRelationInput No

PageArtworkWhereUniqueInput

Name Type Nullable
id String No

PageArtworkOrderByWithAggregationInput

Name Type Nullable
status SortOrder No
pageId SortOrder No
storyId SortOrder No
artistId SortOrder No
photoId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
_count PageArtworkCountOrderByAggregateInput No
_max PageArtworkMaxOrderByAggregateInput No
_min PageArtworkMinOrderByAggregateInput No

PageArtworkScalarWhereWithAggregatesInput

Name Type Nullable
AND PageArtworkScalarWhereWithAggregatesInput | PageArtworkScalarWhereWithAggregatesInput[] No
OR PageArtworkScalarWhereWithAggregatesInput[] No
NOT PageArtworkScalarWhereWithAggregatesInput | PageArtworkScalarWhereWithAggregatesInput[] No
status EnumPageStatusWithAggregatesFilter | PageStatus No
pageId StringWithAggregatesFilter | String No
storyId StringWithAggregatesFilter | String No
artistId StringWithAggregatesFilter | String No
photoId StringWithAggregatesFilter | String No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
deletedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
zenstack_guard BoolWithAggregatesFilter | Boolean No
zenstack_transaction StringNullableWithAggregatesFilter | String | Null Yes

PageTextWhereInput

Name Type Nullable
AND PageTextWhereInput | PageTextWhereInput[] No
OR PageTextWhereInput[] No
NOT PageTextWhereInput | PageTextWhereInput[] No
status EnumPageStatusFilter | PageStatus No
locale EnumLocaleFilter | Locale No
text StringFilter | String No
type EnumPageTextTypeFilter | PageTextType No
pageId StringFilter | String No
storyId StringFilter | String No
authorId StringNullableFilter | String | Null Yes
translatorId StringNullableFilter | String | Null Yes
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes
page PageRelationFilter | PageWhereInput No
story StoryRelationFilter | StoryWhereInput No
author AuthorRelationFilter | AuthorWhereInput | Null Yes
translator TranslatorRelationFilter | TranslatorWhereInput | Null Yes

PageTextOrderByWithRelationInput

Name Type Nullable
status SortOrder No
locale SortOrder No
text SortOrder No
type SortOrder No
pageId SortOrder No
storyId SortOrder No
authorId SortOrder No
translatorId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
page PageOrderByWithRelationInput No
story StoryOrderByWithRelationInput No
author AuthorOrderByWithRelationInput No
translator TranslatorOrderByWithRelationInput No

PageTextWhereUniqueInput

Name Type Nullable
id String No

PageTextOrderByWithAggregationInput

Name Type Nullable
status SortOrder No
locale SortOrder No
text SortOrder No
type SortOrder No
pageId SortOrder No
storyId SortOrder No
authorId SortOrder No
translatorId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
_count PageTextCountOrderByAggregateInput No
_max PageTextMaxOrderByAggregateInput No
_min PageTextMinOrderByAggregateInput No

PageTextScalarWhereWithAggregatesInput

Name Type Nullable
AND PageTextScalarWhereWithAggregatesInput | PageTextScalarWhereWithAggregatesInput[] No
OR PageTextScalarWhereWithAggregatesInput[] No
NOT PageTextScalarWhereWithAggregatesInput | PageTextScalarWhereWithAggregatesInput[] No
status EnumPageStatusWithAggregatesFilter | PageStatus No
locale EnumLocaleWithAggregatesFilter | Locale No
text StringWithAggregatesFilter | String No
type EnumPageTextTypeWithAggregatesFilter | PageTextType No
pageId StringWithAggregatesFilter | String No
storyId StringWithAggregatesFilter | String No
authorId StringNullableWithAggregatesFilter | String | Null Yes
translatorId StringNullableWithAggregatesFilter | String | Null Yes
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
deletedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
zenstack_guard BoolWithAggregatesFilter | Boolean No
zenstack_transaction StringNullableWithAggregatesFilter | String | Null Yes

PageWhereInput

Name Type Nullable
AND PageWhereInput | PageWhereInput[] No
OR PageWhereInput[] No
NOT PageWhereInput | PageWhereInput[] No
status EnumPageStatusFilter | PageStatus No
type EnumPageTypeFilter | PageType No
pageNumber IntFilter | Int No
storyId StringFilter | String No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes
story StoryRelationFilter | StoryWhereInput No
artworks PageArtworkListRelationFilter No
texts PageTextListRelationFilter No

PageOrderByWithRelationInput

Name Type Nullable
status SortOrder No
type SortOrder No
pageNumber SortOrder No
storyId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
story StoryOrderByWithRelationInput No
artworks PageArtworkOrderByRelationAggregateInput No
texts PageTextOrderByRelationAggregateInput No

PageWhereUniqueInput

Name Type Nullable
id String No

PageOrderByWithAggregationInput

Name Type Nullable
status SortOrder No
type SortOrder No
pageNumber SortOrder No
storyId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No
_count PageCountOrderByAggregateInput No
_avg PageAvgOrderByAggregateInput No
_max PageMaxOrderByAggregateInput No
_min PageMinOrderByAggregateInput No
_sum PageSumOrderByAggregateInput No

PageScalarWhereWithAggregatesInput

Name Type Nullable
AND PageScalarWhereWithAggregatesInput | PageScalarWhereWithAggregatesInput[] No
OR PageScalarWhereWithAggregatesInput[] No
NOT PageScalarWhereWithAggregatesInput | PageScalarWhereWithAggregatesInput[] No
status EnumPageStatusWithAggregatesFilter | PageStatus No
type EnumPageTypeWithAggregatesFilter | PageType No
pageNumber IntWithAggregatesFilter | Int No
storyId StringWithAggregatesFilter | String No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
deletedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
zenstack_guard BoolWithAggregatesFilter | Boolean No
zenstack_transaction StringNullableWithAggregatesFilter | String | Null Yes

UserCreateInput

Name Type Nullable
name String No
email String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
artist ArtistCreateNestedOneWithoutUserInput No
author AuthorCreateNestedOneWithoutUserInput No
editions EditionCreateNestedManyWithoutUserInput No

UserUncheckedCreateInput

Name Type Nullable
name String No
email String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
artist ArtistUncheckedCreateNestedOneWithoutUserInput No
author AuthorUncheckedCreateNestedOneWithoutUserInput No
editions EditionUncheckedCreateNestedManyWithoutUserInput No

UserUpdateInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
artist ArtistUpdateOneWithoutUserNestedInput No
author AuthorUpdateOneWithoutUserNestedInput No
editions EditionUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
artist ArtistUncheckedUpdateOneWithoutUserNestedInput No
author AuthorUncheckedUpdateOneWithoutUserNestedInput No
editions EditionUncheckedUpdateManyWithoutUserNestedInput No

UserCreateManyInput

Name Type Nullable
name String No
email String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

UserUpdateManyMutationInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

UserUncheckedUpdateManyInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

AuthorCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
stories StoryCreateNestedManyWithoutAuthorInput No
pageTexts PageTextCreateNestedManyWithoutAuthorInput No
user UserCreateNestedOneWithoutAuthorInput No

AuthorUncheckedCreateInput

Name Type Nullable
userId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
stories StoryUncheckedCreateNestedManyWithoutAuthorInput No
pageTexts PageTextUncheckedCreateNestedManyWithoutAuthorInput No

AuthorUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
stories StoryUpdateManyWithoutAuthorNestedInput No
pageTexts PageTextUpdateManyWithoutAuthorNestedInput No
user UserUpdateOneRequiredWithoutAuthorNestedInput No

AuthorUncheckedUpdateInput

Name Type Nullable
userId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
stories StoryUncheckedUpdateManyWithoutAuthorNestedInput No
pageTexts PageTextUncheckedUpdateManyWithoutAuthorNestedInput No

AuthorCreateManyInput

Name Type Nullable
userId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

AuthorUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

AuthorUncheckedUpdateManyInput

Name Type Nullable
userId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

ArtistCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
stories StoryCreateNestedManyWithoutArtistInput No
pageArtworks PageArtworkCreateNestedManyWithoutArtistInput No
user UserCreateNestedOneWithoutArtistInput No

ArtistUncheckedCreateInput

Name Type Nullable
userId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
stories StoryUncheckedCreateNestedManyWithoutArtistInput No
pageArtworks PageArtworkUncheckedCreateNestedManyWithoutArtistInput No

ArtistUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
stories StoryUpdateManyWithoutArtistNestedInput No
pageArtworks PageArtworkUpdateManyWithoutArtistNestedInput No
user UserUpdateOneRequiredWithoutArtistNestedInput No

ArtistUncheckedUpdateInput

Name Type Nullable
userId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
stories StoryUncheckedUpdateManyWithoutArtistNestedInput No
pageArtworks PageArtworkUncheckedUpdateManyWithoutArtistNestedInput No

ArtistCreateManyInput

Name Type Nullable
userId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

ArtistUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

ArtistUncheckedUpdateManyInput

Name Type Nullable
userId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

TranslatorCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pageTexts PageTextCreateNestedManyWithoutTranslatorInput No

TranslatorUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pageTexts PageTextUncheckedCreateNestedManyWithoutTranslatorInput No

TranslatorUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pageTexts PageTextUpdateManyWithoutTranslatorNestedInput No

TranslatorUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pageTexts PageTextUncheckedUpdateManyWithoutTranslatorNestedInput No

TranslatorCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

TranslatorUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

TranslatorUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

ConceptCreateInput

Name Type Nullable
name String No
type ConceptType No
status ConceptStatus No
description String | Null Yes
prompt String No
identifier String No
classNoun String No
negativePrompt String No
instancePrompt String No
classPrompt String No
positivePrompts ConceptCreatepositivePromptsInput | String No
negativePrompts ConceptCreatenegativePromptsInput | String No
dreamboothModelURI String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
dreamboothTraining DreamBoothTrainingCreateNestedOneWithoutConceptInput No
photos PhotoCreateNestedManyWithoutConceptsInput No

ConceptUncheckedCreateInput

Name Type Nullable
name String No
type ConceptType No
status ConceptStatus No
description String | Null Yes
prompt String No
identifier String No
classNoun String No
negativePrompt String No
instancePrompt String No
classPrompt String No
positivePrompts ConceptCreatepositivePromptsInput | String No
negativePrompts ConceptCreatenegativePromptsInput | String No
dreamboothTrainingId String | Null Yes
dreamboothModelURI String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
photos PhotoUncheckedCreateNestedManyWithoutConceptsInput No

ConceptUpdateInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
type ConceptType | EnumConceptTypeFieldUpdateOperationsInput No
status ConceptStatus | EnumConceptStatusFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
prompt String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
classNoun String | StringFieldUpdateOperationsInput No
negativePrompt String | StringFieldUpdateOperationsInput No
instancePrompt String | StringFieldUpdateOperationsInput No
classPrompt String | StringFieldUpdateOperationsInput No
positivePrompts ConceptUpdatepositivePromptsInput | String No
negativePrompts ConceptUpdatenegativePromptsInput | String No
dreamboothModelURI String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
dreamboothTraining DreamBoothTrainingUpdateOneWithoutConceptNestedInput No
photos PhotoUpdateManyWithoutConceptsNestedInput No

ConceptUncheckedUpdateInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
type ConceptType | EnumConceptTypeFieldUpdateOperationsInput No
status ConceptStatus | EnumConceptStatusFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
prompt String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
classNoun String | StringFieldUpdateOperationsInput No
negativePrompt String | StringFieldUpdateOperationsInput No
instancePrompt String | StringFieldUpdateOperationsInput No
classPrompt String | StringFieldUpdateOperationsInput No
positivePrompts ConceptUpdatepositivePromptsInput | String No
negativePrompts ConceptUpdatenegativePromptsInput | String No
dreamboothTrainingId String | NullableStringFieldUpdateOperationsInput | Null Yes
dreamboothModelURI String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
photos PhotoUncheckedUpdateManyWithoutConceptsNestedInput No

ConceptCreateManyInput

Name Type Nullable
name String No
type ConceptType No
status ConceptStatus No
description String | Null Yes
prompt String No
identifier String No
classNoun String No
negativePrompt String No
instancePrompt String No
classPrompt String No
positivePrompts ConceptCreatepositivePromptsInput | String No
negativePrompts ConceptCreatenegativePromptsInput | String No
dreamboothTrainingId String | Null Yes
dreamboothModelURI String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

ConceptUpdateManyMutationInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
type ConceptType | EnumConceptTypeFieldUpdateOperationsInput No
status ConceptStatus | EnumConceptStatusFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
prompt String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
classNoun String | StringFieldUpdateOperationsInput No
negativePrompt String | StringFieldUpdateOperationsInput No
instancePrompt String | StringFieldUpdateOperationsInput No
classPrompt String | StringFieldUpdateOperationsInput No
positivePrompts ConceptUpdatepositivePromptsInput | String No
negativePrompts ConceptUpdatenegativePromptsInput | String No
dreamboothModelURI String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

ConceptUncheckedUpdateManyInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
type ConceptType | EnumConceptTypeFieldUpdateOperationsInput No
status ConceptStatus | EnumConceptStatusFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
prompt String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
classNoun String | StringFieldUpdateOperationsInput No
negativePrompt String | StringFieldUpdateOperationsInput No
instancePrompt String | StringFieldUpdateOperationsInput No
classPrompt String | StringFieldUpdateOperationsInput No
positivePrompts ConceptUpdatepositivePromptsInput | String No
negativePrompts ConceptUpdatenegativePromptsInput | String No
dreamboothTrainingId String | NullableStringFieldUpdateOperationsInput | Null Yes
dreamboothModelURI String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PredictionCreateInput

Name Type Nullable
id String No
uuid String No
input NullableJsonNullValueInput | Json No
output NullableJsonNullValueInput | Json No
status String | Null Yes
created_at DateTime | Null Yes
started_at DateTime | Null Yes
completed_at DateTime | Null Yes
version String | Null Yes
metrics NullableJsonNullValueInput | Json No
error String | Null Yes
logs String | Null Yes

PredictionUncheckedCreateInput

Name Type Nullable
id String No
uuid String No
input NullableJsonNullValueInput | Json No
output NullableJsonNullValueInput | Json No
status String | Null Yes
created_at DateTime | Null Yes
started_at DateTime | Null Yes
completed_at DateTime | Null Yes
version String | Null Yes
metrics NullableJsonNullValueInput | Json No
error String | Null Yes
logs String | Null Yes

PredictionUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
input NullableJsonNullValueInput | Json No
output NullableJsonNullValueInput | Json No
status String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
started_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
completed_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
metrics NullableJsonNullValueInput | Json No
error String | NullableStringFieldUpdateOperationsInput | Null Yes
logs String | NullableStringFieldUpdateOperationsInput | Null Yes

PredictionUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
input NullableJsonNullValueInput | Json No
output NullableJsonNullValueInput | Json No
status String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
started_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
completed_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
metrics NullableJsonNullValueInput | Json No
error String | NullableStringFieldUpdateOperationsInput | Null Yes
logs String | NullableStringFieldUpdateOperationsInput | Null Yes

PredictionCreateManyInput

Name Type Nullable
id String No
uuid String No
input NullableJsonNullValueInput | Json No
output NullableJsonNullValueInput | Json No
status String | Null Yes
created_at DateTime | Null Yes
started_at DateTime | Null Yes
completed_at DateTime | Null Yes
version String | Null Yes
metrics NullableJsonNullValueInput | Json No
error String | Null Yes
logs String | Null Yes

PredictionUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
input NullableJsonNullValueInput | Json No
output NullableJsonNullValueInput | Json No
status String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
started_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
completed_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
metrics NullableJsonNullValueInput | Json No
error String | NullableStringFieldUpdateOperationsInput | Null Yes
logs String | NullableStringFieldUpdateOperationsInput | Null Yes

PredictionUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
input NullableJsonNullValueInput | Json No
output NullableJsonNullValueInput | Json No
status String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
started_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
completed_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
metrics NullableJsonNullValueInput | Json No
error String | NullableStringFieldUpdateOperationsInput | Null Yes
logs String | NullableStringFieldUpdateOperationsInput | Null Yes

DreamBoothTrainingCreateInput

Name Type Nullable
id String No
createdAt DateTime No
instance_prompt String No
class_prompt String No
instance_data String No
class_data String No
num_class_images Int No
save_sample_prompt String | Null Yes
save_sample_negative_prompt String | Null Yes
n_save_sample Int No
save_guidance_scale Float No
save_infer_steps Int No
pad_tokens Boolean No
with_prior_preservation Boolean No
prior_loss_weight Float No
seed Int No
resolution Int No
center_crop Boolean No
train_text_encoder Boolean No
train_batch_size Int No
sample_batch_size Int No
num_train_epochs Int No
max_train_steps Int No
gradient_accumulation_steps Int No
gradient_checkpointing Boolean No
learning_rate Float No
scale_lr Boolean No
lr_scheduler LRScheduler No
lr_warmup_steps Int No
use_8bit_adam Boolean No
adam_beta1 Float No
adam_beta2 Float No
adam_weight_decay Float No
adam_epsilon Float No
max_grad_norm Float No
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
Concept ConceptCreateNestedManyWithoutDreamboothTrainingInput No

DreamBoothTrainingUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
instance_prompt String No
class_prompt String No
instance_data String No
class_data String No
num_class_images Int No
save_sample_prompt String | Null Yes
save_sample_negative_prompt String | Null Yes
n_save_sample Int No
save_guidance_scale Float No
save_infer_steps Int No
pad_tokens Boolean No
with_prior_preservation Boolean No
prior_loss_weight Float No
seed Int No
resolution Int No
center_crop Boolean No
train_text_encoder Boolean No
train_batch_size Int No
sample_batch_size Int No
num_train_epochs Int No
max_train_steps Int No
gradient_accumulation_steps Int No
gradient_checkpointing Boolean No
learning_rate Float No
scale_lr Boolean No
lr_scheduler LRScheduler No
lr_warmup_steps Int No
use_8bit_adam Boolean No
adam_beta1 Float No
adam_beta2 Float No
adam_weight_decay Float No
adam_epsilon Float No
max_grad_norm Float No
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
Concept ConceptUncheckedCreateNestedManyWithoutDreamboothTrainingInput No

DreamBoothTrainingUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
instance_prompt String | StringFieldUpdateOperationsInput No
class_prompt String | StringFieldUpdateOperationsInput No
instance_data String | StringFieldUpdateOperationsInput No
class_data String | StringFieldUpdateOperationsInput No
num_class_images Int | IntFieldUpdateOperationsInput No
save_sample_prompt String | NullableStringFieldUpdateOperationsInput | Null Yes
save_sample_negative_prompt String | NullableStringFieldUpdateOperationsInput | Null Yes
n_save_sample Int | IntFieldUpdateOperationsInput No
save_guidance_scale Float | FloatFieldUpdateOperationsInput No
save_infer_steps Int | IntFieldUpdateOperationsInput No
pad_tokens Boolean | BoolFieldUpdateOperationsInput No
with_prior_preservation Boolean | BoolFieldUpdateOperationsInput No
prior_loss_weight Float | FloatFieldUpdateOperationsInput No
seed Int | IntFieldUpdateOperationsInput No
resolution Int | IntFieldUpdateOperationsInput No
center_crop Boolean | BoolFieldUpdateOperationsInput No
train_text_encoder Boolean | BoolFieldUpdateOperationsInput No
train_batch_size Int | IntFieldUpdateOperationsInput No
sample_batch_size Int | IntFieldUpdateOperationsInput No
num_train_epochs Int | IntFieldUpdateOperationsInput No
max_train_steps Int | IntFieldUpdateOperationsInput No
gradient_accumulation_steps Int | IntFieldUpdateOperationsInput No
gradient_checkpointing Boolean | BoolFieldUpdateOperationsInput No
learning_rate Float | FloatFieldUpdateOperationsInput No
scale_lr Boolean | BoolFieldUpdateOperationsInput No
lr_scheduler LRScheduler | EnumLRSchedulerFieldUpdateOperationsInput No
lr_warmup_steps Int | IntFieldUpdateOperationsInput No
use_8bit_adam Boolean | BoolFieldUpdateOperationsInput No
adam_beta1 Float | FloatFieldUpdateOperationsInput No
adam_beta2 Float | FloatFieldUpdateOperationsInput No
adam_weight_decay Float | FloatFieldUpdateOperationsInput No
adam_epsilon Float | FloatFieldUpdateOperationsInput No
max_grad_norm Float | FloatFieldUpdateOperationsInput No
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
Concept ConceptUpdateManyWithoutDreamboothTrainingNestedInput No

DreamBoothTrainingUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
instance_prompt String | StringFieldUpdateOperationsInput No
class_prompt String | StringFieldUpdateOperationsInput No
instance_data String | StringFieldUpdateOperationsInput No
class_data String | StringFieldUpdateOperationsInput No
num_class_images Int | IntFieldUpdateOperationsInput No
save_sample_prompt String | NullableStringFieldUpdateOperationsInput | Null Yes
save_sample_negative_prompt String | NullableStringFieldUpdateOperationsInput | Null Yes
n_save_sample Int | IntFieldUpdateOperationsInput No
save_guidance_scale Float | FloatFieldUpdateOperationsInput No
save_infer_steps Int | IntFieldUpdateOperationsInput No
pad_tokens Boolean | BoolFieldUpdateOperationsInput No
with_prior_preservation Boolean | BoolFieldUpdateOperationsInput No
prior_loss_weight Float | FloatFieldUpdateOperationsInput No
seed Int | IntFieldUpdateOperationsInput No
resolution Int | IntFieldUpdateOperationsInput No
center_crop Boolean | BoolFieldUpdateOperationsInput No
train_text_encoder Boolean | BoolFieldUpdateOperationsInput No
train_batch_size Int | IntFieldUpdateOperationsInput No
sample_batch_size Int | IntFieldUpdateOperationsInput No
num_train_epochs Int | IntFieldUpdateOperationsInput No
max_train_steps Int | IntFieldUpdateOperationsInput No
gradient_accumulation_steps Int | IntFieldUpdateOperationsInput No
gradient_checkpointing Boolean | BoolFieldUpdateOperationsInput No
learning_rate Float | FloatFieldUpdateOperationsInput No
scale_lr Boolean | BoolFieldUpdateOperationsInput No
lr_scheduler LRScheduler | EnumLRSchedulerFieldUpdateOperationsInput No
lr_warmup_steps Int | IntFieldUpdateOperationsInput No
use_8bit_adam Boolean | BoolFieldUpdateOperationsInput No
adam_beta1 Float | FloatFieldUpdateOperationsInput No
adam_beta2 Float | FloatFieldUpdateOperationsInput No
adam_weight_decay Float | FloatFieldUpdateOperationsInput No
adam_epsilon Float | FloatFieldUpdateOperationsInput No
max_grad_norm Float | FloatFieldUpdateOperationsInput No
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
Concept ConceptUncheckedUpdateManyWithoutDreamboothTrainingNestedInput No

DreamBoothTrainingCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
instance_prompt String No
class_prompt String No
instance_data String No
class_data String No
num_class_images Int No
save_sample_prompt String | Null Yes
save_sample_negative_prompt String | Null Yes
n_save_sample Int No
save_guidance_scale Float No
save_infer_steps Int No
pad_tokens Boolean No
with_prior_preservation Boolean No
prior_loss_weight Float No
seed Int No
resolution Int No
center_crop Boolean No
train_text_encoder Boolean No
train_batch_size Int No
sample_batch_size Int No
num_train_epochs Int No
max_train_steps Int No
gradient_accumulation_steps Int No
gradient_checkpointing Boolean No
learning_rate Float No
scale_lr Boolean No
lr_scheduler LRScheduler No
lr_warmup_steps Int No
use_8bit_adam Boolean No
adam_beta1 Float No
adam_beta2 Float No
adam_weight_decay Float No
adam_epsilon Float No
max_grad_norm Float No
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

DreamBoothTrainingUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
instance_prompt String | StringFieldUpdateOperationsInput No
class_prompt String | StringFieldUpdateOperationsInput No
instance_data String | StringFieldUpdateOperationsInput No
class_data String | StringFieldUpdateOperationsInput No
num_class_images Int | IntFieldUpdateOperationsInput No
save_sample_prompt String | NullableStringFieldUpdateOperationsInput | Null Yes
save_sample_negative_prompt String | NullableStringFieldUpdateOperationsInput | Null Yes
n_save_sample Int | IntFieldUpdateOperationsInput No
save_guidance_scale Float | FloatFieldUpdateOperationsInput No
save_infer_steps Int | IntFieldUpdateOperationsInput No
pad_tokens Boolean | BoolFieldUpdateOperationsInput No
with_prior_preservation Boolean | BoolFieldUpdateOperationsInput No
prior_loss_weight Float | FloatFieldUpdateOperationsInput No
seed Int | IntFieldUpdateOperationsInput No
resolution Int | IntFieldUpdateOperationsInput No
center_crop Boolean | BoolFieldUpdateOperationsInput No
train_text_encoder Boolean | BoolFieldUpdateOperationsInput No
train_batch_size Int | IntFieldUpdateOperationsInput No
sample_batch_size Int | IntFieldUpdateOperationsInput No
num_train_epochs Int | IntFieldUpdateOperationsInput No
max_train_steps Int | IntFieldUpdateOperationsInput No
gradient_accumulation_steps Int | IntFieldUpdateOperationsInput No
gradient_checkpointing Boolean | BoolFieldUpdateOperationsInput No
learning_rate Float | FloatFieldUpdateOperationsInput No
scale_lr Boolean | BoolFieldUpdateOperationsInput No
lr_scheduler LRScheduler | EnumLRSchedulerFieldUpdateOperationsInput No
lr_warmup_steps Int | IntFieldUpdateOperationsInput No
use_8bit_adam Boolean | BoolFieldUpdateOperationsInput No
adam_beta1 Float | FloatFieldUpdateOperationsInput No
adam_beta2 Float | FloatFieldUpdateOperationsInput No
adam_weight_decay Float | FloatFieldUpdateOperationsInput No
adam_epsilon Float | FloatFieldUpdateOperationsInput No
max_grad_norm Float | FloatFieldUpdateOperationsInput No
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

DreamBoothTrainingUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
instance_prompt String | StringFieldUpdateOperationsInput No
class_prompt String | StringFieldUpdateOperationsInput No
instance_data String | StringFieldUpdateOperationsInput No
class_data String | StringFieldUpdateOperationsInput No
num_class_images Int | IntFieldUpdateOperationsInput No
save_sample_prompt String | NullableStringFieldUpdateOperationsInput | Null Yes
save_sample_negative_prompt String | NullableStringFieldUpdateOperationsInput | Null Yes
n_save_sample Int | IntFieldUpdateOperationsInput No
save_guidance_scale Float | FloatFieldUpdateOperationsInput No
save_infer_steps Int | IntFieldUpdateOperationsInput No
pad_tokens Boolean | BoolFieldUpdateOperationsInput No
with_prior_preservation Boolean | BoolFieldUpdateOperationsInput No
prior_loss_weight Float | FloatFieldUpdateOperationsInput No
seed Int | IntFieldUpdateOperationsInput No
resolution Int | IntFieldUpdateOperationsInput No
center_crop Boolean | BoolFieldUpdateOperationsInput No
train_text_encoder Boolean | BoolFieldUpdateOperationsInput No
train_batch_size Int | IntFieldUpdateOperationsInput No
sample_batch_size Int | IntFieldUpdateOperationsInput No
num_train_epochs Int | IntFieldUpdateOperationsInput No
max_train_steps Int | IntFieldUpdateOperationsInput No
gradient_accumulation_steps Int | IntFieldUpdateOperationsInput No
gradient_checkpointing Boolean | BoolFieldUpdateOperationsInput No
learning_rate Float | FloatFieldUpdateOperationsInput No
scale_lr Boolean | BoolFieldUpdateOperationsInput No
lr_scheduler LRScheduler | EnumLRSchedulerFieldUpdateOperationsInput No
lr_warmup_steps Int | IntFieldUpdateOperationsInput No
use_8bit_adam Boolean | BoolFieldUpdateOperationsInput No
adam_beta1 Float | FloatFieldUpdateOperationsInput No
adam_beta2 Float | FloatFieldUpdateOperationsInput No
adam_weight_decay Float | FloatFieldUpdateOperationsInput No
adam_epsilon Float | FloatFieldUpdateOperationsInput No
max_grad_norm Float | FloatFieldUpdateOperationsInput No
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

EditionCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
user UserCreateNestedOneWithoutEditionsInput No
pdf PDFCreateNestedOneWithoutEditionInput No

EditionUncheckedCreateInput

Name Type Nullable
userId String No
pdfId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

EditionUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
user UserUpdateOneRequiredWithoutEditionsNestedInput No
pdf PDFUpdateOneRequiredWithoutEditionNestedInput No

EditionUncheckedUpdateInput

Name Type Nullable
userId String | StringFieldUpdateOperationsInput No
pdfId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

EditionCreateManyInput

Name Type Nullable
userId String No
pdfId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

EditionUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

EditionUncheckedUpdateManyInput

Name Type Nullable
userId String | StringFieldUpdateOperationsInput No
pdfId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

CloudFileCreateInput

Name Type Nullable
filename String No
stem String No
extension String No
size Int No
mime String No
resourceType FileResourceType No
metadata JsonNullValueInput | Json No
key String No
bucket String No
region CloudFileRegion No
publicUrl String | Null Yes
privacy FilePrivacy No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
photo PhotoCreateNestedOneWithoutFileInput No
pdf PDFCreateNestedOneWithoutFileInput No

CloudFileUncheckedCreateInput

Name Type Nullable
filename String No
stem String No
extension String No
size Int No
mime String No
resourceType FileResourceType No
metadata JsonNullValueInput | Json No
key String No
bucket String No
region CloudFileRegion No
publicUrl String | Null Yes
privacy FilePrivacy No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
photo PhotoUncheckedCreateNestedOneWithoutFileInput No
pdf PDFUncheckedCreateNestedOneWithoutFileInput No

CloudFileUpdateInput

Name Type Nullable
filename String | StringFieldUpdateOperationsInput No
stem String | StringFieldUpdateOperationsInput No
extension String | StringFieldUpdateOperationsInput No
size Int | IntFieldUpdateOperationsInput No
mime String | StringFieldUpdateOperationsInput No
resourceType FileResourceType | EnumFileResourceTypeFieldUpdateOperationsInput No
metadata JsonNullValueInput | Json No
key String | StringFieldUpdateOperationsInput No
bucket String | StringFieldUpdateOperationsInput No
region CloudFileRegion | EnumCloudFileRegionFieldUpdateOperationsInput No
publicUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
privacy FilePrivacy | EnumFilePrivacyFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
photo PhotoUpdateOneWithoutFileNestedInput No
pdf PDFUpdateOneWithoutFileNestedInput No

CloudFileUncheckedUpdateInput

Name Type Nullable
filename String | StringFieldUpdateOperationsInput No
stem String | StringFieldUpdateOperationsInput No
extension String | StringFieldUpdateOperationsInput No
size Int | IntFieldUpdateOperationsInput No
mime String | StringFieldUpdateOperationsInput No
resourceType FileResourceType | EnumFileResourceTypeFieldUpdateOperationsInput No
metadata JsonNullValueInput | Json No
key String | StringFieldUpdateOperationsInput No
bucket String | StringFieldUpdateOperationsInput No
region CloudFileRegion | EnumCloudFileRegionFieldUpdateOperationsInput No
publicUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
privacy FilePrivacy | EnumFilePrivacyFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
photo PhotoUncheckedUpdateOneWithoutFileNestedInput No
pdf PDFUncheckedUpdateOneWithoutFileNestedInput No

CloudFileCreateManyInput

Name Type Nullable
filename String No
stem String No
extension String No
size Int No
mime String No
resourceType FileResourceType No
metadata JsonNullValueInput | Json No
key String No
bucket String No
region CloudFileRegion No
publicUrl String | Null Yes
privacy FilePrivacy No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

CloudFileUpdateManyMutationInput

Name Type Nullable
filename String | StringFieldUpdateOperationsInput No
stem String | StringFieldUpdateOperationsInput No
extension String | StringFieldUpdateOperationsInput No
size Int | IntFieldUpdateOperationsInput No
mime String | StringFieldUpdateOperationsInput No
resourceType FileResourceType | EnumFileResourceTypeFieldUpdateOperationsInput No
metadata JsonNullValueInput | Json No
key String | StringFieldUpdateOperationsInput No
bucket String | StringFieldUpdateOperationsInput No
region CloudFileRegion | EnumCloudFileRegionFieldUpdateOperationsInput No
publicUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
privacy FilePrivacy | EnumFilePrivacyFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

CloudFileUncheckedUpdateManyInput

Name Type Nullable
filename String | StringFieldUpdateOperationsInput No
stem String | StringFieldUpdateOperationsInput No
extension String | StringFieldUpdateOperationsInput No
size Int | IntFieldUpdateOperationsInput No
mime String | StringFieldUpdateOperationsInput No
resourceType FileResourceType | EnumFileResourceTypeFieldUpdateOperationsInput No
metadata JsonNullValueInput | Json No
key String | StringFieldUpdateOperationsInput No
bucket String | StringFieldUpdateOperationsInput No
region CloudFileRegion | EnumCloudFileRegionFieldUpdateOperationsInput No
publicUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
privacy FilePrivacy | EnumFilePrivacyFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PhotoCreateInput

Name Type Nullable
height Int No
width Int No
tags PhotoCreatetagsInput | String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
file CloudFileCreateNestedOneWithoutPhotoInput No
pageArtworks PageArtworkCreateNestedManyWithoutPhotoInput No
concepts ConceptCreateNestedManyWithoutPhotosInput No

PhotoUncheckedCreateInput

Name Type Nullable
height Int No
width Int No
tags PhotoCreatetagsInput | String No
fileId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pageArtworks PageArtworkUncheckedCreateNestedManyWithoutPhotoInput No
concepts ConceptUncheckedCreateNestedManyWithoutPhotosInput No

PhotoUpdateInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
tags PhotoUpdatetagsInput | String No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
file CloudFileUpdateOneRequiredWithoutPhotoNestedInput No
pageArtworks PageArtworkUpdateManyWithoutPhotoNestedInput No
concepts ConceptUpdateManyWithoutPhotosNestedInput No

PhotoUncheckedUpdateInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
tags PhotoUpdatetagsInput | String No
fileId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pageArtworks PageArtworkUncheckedUpdateManyWithoutPhotoNestedInput No
concepts ConceptUncheckedUpdateManyWithoutPhotosNestedInput No

PhotoCreateManyInput

Name Type Nullable
height Int No
width Int No
tags PhotoCreatetagsInput | String No
fileId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PhotoUpdateManyMutationInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
tags PhotoUpdatetagsInput | String No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PhotoUncheckedUpdateManyInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
tags PhotoUpdatetagsInput | String No
fileId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PDFCreateInput

Name Type Nullable
height Int No
width Int No
pages Int No
tags PDFCreatetagsInput | String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
file CloudFileCreateNestedOneWithoutPdfInput No
edition EditionCreateNestedOneWithoutPdfInput No

PDFUncheckedCreateInput

Name Type Nullable
height Int No
width Int No
pages Int No
tags PDFCreatetagsInput | String No
fileId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
edition EditionUncheckedCreateNestedOneWithoutPdfInput No

PDFUpdateInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
pages Int | IntFieldUpdateOperationsInput No
tags PDFUpdatetagsInput | String No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
file CloudFileUpdateOneRequiredWithoutPdfNestedInput No
edition EditionUpdateOneWithoutPdfNestedInput No

PDFUncheckedUpdateInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
pages Int | IntFieldUpdateOperationsInput No
tags PDFUpdatetagsInput | String No
fileId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
edition EditionUncheckedUpdateOneWithoutPdfNestedInput No

PDFCreateManyInput

Name Type Nullable
height Int No
width Int No
pages Int No
tags PDFCreatetagsInput | String No
fileId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PDFUpdateManyMutationInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
pages Int | IntFieldUpdateOperationsInput No
tags PDFUpdatetagsInput | String No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PDFUncheckedUpdateManyInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
pages Int | IntFieldUpdateOperationsInput No
tags PDFUpdatetagsInput | String No
fileId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

StoryCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
artist ArtistCreateNestedOneWithoutStoriesInput No
author AuthorCreateNestedOneWithoutStoriesInput No
pages PageCreateNestedManyWithoutStoryInput No
pageArtworks PageArtworkCreateNestedManyWithoutStoryInput No
pageTexts PageTextCreateNestedManyWithoutStoryInput No

StoryUncheckedCreateInput

Name Type Nullable
artistId String | Null Yes
authorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pages PageUncheckedCreateNestedManyWithoutStoryInput No
pageArtworks PageArtworkUncheckedCreateNestedManyWithoutStoryInput No
pageTexts PageTextUncheckedCreateNestedManyWithoutStoryInput No


StoryUncheckedUpdateInput

Name Type Nullable
artistId String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pages PageUncheckedUpdateManyWithoutStoryNestedInput No
pageArtworks PageArtworkUncheckedUpdateManyWithoutStoryNestedInput No
pageTexts PageTextUncheckedUpdateManyWithoutStoryNestedInput No

StoryCreateManyInput

Name Type Nullable
artistId String | Null Yes
authorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

StoryUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

StoryUncheckedUpdateManyInput

Name Type Nullable
artistId String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageArtworkCreateInput

Name Type Nullable
status PageStatus No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
page PageCreateNestedOneWithoutArtworksInput No
story StoryCreateNestedOneWithoutPageArtworksInput No
artist ArtistCreateNestedOneWithoutPageArtworksInput No
photo PhotoCreateNestedOneWithoutPageArtworksInput No

PageArtworkUncheckedCreateInput

Name Type Nullable
status PageStatus No
pageId String No
storyId String No
artistId String No
photoId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes


PageArtworkUncheckedUpdateInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
pageId String | StringFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
artistId String | StringFieldUpdateOperationsInput No
photoId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageArtworkCreateManyInput

Name Type Nullable
status PageStatus No
pageId String No
storyId String No
artistId String No
photoId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageArtworkUpdateManyMutationInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageArtworkUncheckedUpdateManyInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
pageId String | StringFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
artistId String | StringFieldUpdateOperationsInput No
photoId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageTextCreateInput

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
page PageCreateNestedOneWithoutTextsInput No
story StoryCreateNestedOneWithoutPageTextsInput No
author AuthorCreateNestedOneWithoutPageTextsInput No
translator TranslatorCreateNestedOneWithoutPageTextsInput No

PageTextUncheckedCreateInput

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
pageId String No
storyId String No
authorId String | Null Yes
translatorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageTextUpdateInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
locale Locale | EnumLocaleFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
type PageTextType | EnumPageTextTypeFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
page PageUpdateOneRequiredWithoutTextsNestedInput No
story StoryUpdateOneRequiredWithoutPageTextsNestedInput No
author AuthorUpdateOneWithoutPageTextsNestedInput No
translator TranslatorUpdateOneWithoutPageTextsNestedInput No

PageTextUncheckedUpdateInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
locale Locale | EnumLocaleFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
type PageTextType | EnumPageTextTypeFieldUpdateOperationsInput No
pageId String | StringFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
authorId String | NullableStringFieldUpdateOperationsInput | Null Yes
translatorId String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageTextCreateManyInput

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
pageId String No
storyId String No
authorId String | Null Yes
translatorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageTextUpdateManyMutationInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
locale Locale | EnumLocaleFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
type PageTextType | EnumPageTextTypeFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageTextUncheckedUpdateManyInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
locale Locale | EnumLocaleFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
type PageTextType | EnumPageTextTypeFieldUpdateOperationsInput No
pageId String | StringFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
authorId String | NullableStringFieldUpdateOperationsInput | Null Yes
translatorId String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageCreateInput

Name Type Nullable
status PageStatus No
type PageType No
pageNumber Int No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
story StoryCreateNestedOneWithoutPagesInput No
artworks PageArtworkCreateNestedManyWithoutPageInput No
texts PageTextCreateNestedManyWithoutPageInput No

PageUncheckedCreateInput

Name Type Nullable
status PageStatus No
type PageType No
pageNumber Int No
storyId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
artworks PageArtworkUncheckedCreateNestedManyWithoutPageInput No
texts PageTextUncheckedCreateNestedManyWithoutPageInput No



PageCreateManyInput

Name Type Nullable
status PageStatus No
type PageType No
pageNumber Int No
storyId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageUpdateManyMutationInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
type PageType | EnumPageTypeFieldUpdateOperationsInput No
pageNumber Int | IntFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageUncheckedUpdateManyInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
type PageType | EnumPageTypeFieldUpdateOperationsInput No
pageNumber Int | IntFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

StringFilter

Name Type Nullable
equals String No
in String | String No
notIn String | String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringFilter No

DateTimeFilter

Name Type Nullable
equals DateTime No
in DateTime | DateTime No
notIn DateTime | DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeFilter No

DateTimeNullableFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | DateTime | Null Yes
notIn DateTime | DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableFilter | Null Yes

BoolFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolFilter No

StringNullableFilter

Name Type Nullable
equals String | Null Yes
in String | String | Null Yes
notIn String | String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringNullableFilter | Null Yes

ArtistRelationFilter

Name Type Nullable
is ArtistWhereInput | Null Yes
isNot ArtistWhereInput | Null Yes

AuthorRelationFilter

Name Type Nullable
is AuthorWhereInput | Null Yes
isNot AuthorWhereInput | Null Yes

EditionListRelationFilter

Name Type Nullable
every EditionWhereInput No
some EditionWhereInput No
none EditionWhereInput No

EditionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserCountOrderByAggregateInput

Name Type Nullable
name SortOrder No
email SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

UserMaxOrderByAggregateInput

Name Type Nullable
name SortOrder No
email SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

UserMinOrderByAggregateInput

Name Type Nullable
name SortOrder No
email SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

StringWithAggregatesFilter

Name Type Nullable
equals String No
in String | String No
notIn String | String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

DateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime No
in DateTime | DateTime No
notIn DateTime | DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

DateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | DateTime | Null Yes
notIn DateTime | DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

BoolWithAggregatesFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

StringNullableWithAggregatesFilter

Name Type Nullable
equals String | Null Yes
in String | String | Null Yes
notIn String | String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

StoryListRelationFilter

Name Type Nullable
every StoryWhereInput No
some StoryWhereInput No
none StoryWhereInput No

PageTextListRelationFilter

Name Type Nullable
every PageTextWhereInput No
some PageTextWhereInput No
none PageTextWhereInput No

UserRelationFilter

Name Type Nullable
is UserWhereInput No
isNot UserWhereInput No

StoryOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PageTextOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

AuthorCountOrderByAggregateInput

Name Type Nullable
userId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

AuthorMaxOrderByAggregateInput

Name Type Nullable
userId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

AuthorMinOrderByAggregateInput

Name Type Nullable
userId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

PageArtworkListRelationFilter

Name Type Nullable
every PageArtworkWhereInput No
some PageArtworkWhereInput No
none PageArtworkWhereInput No

PageArtworkOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ArtistCountOrderByAggregateInput

Name Type Nullable
userId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

ArtistMaxOrderByAggregateInput

Name Type Nullable
userId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

ArtistMinOrderByAggregateInput

Name Type Nullable
userId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

TranslatorCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

TranslatorMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

TranslatorMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

EnumConceptTypeFilter

Name Type Nullable
equals ConceptType No
in ConceptType[] | ConceptType No
notIn ConceptType[] | ConceptType No
not ConceptType | NestedEnumConceptTypeFilter No

EnumConceptStatusFilter

Name Type Nullable
equals ConceptStatus No
in ConceptStatus[] | ConceptStatus No
notIn ConceptStatus[] | ConceptStatus No
not ConceptStatus | NestedEnumConceptStatusFilter No

StringNullableListFilter

Name Type Nullable
equals String | Null Yes
has String | Null Yes
hasEvery String No
hasSome String No
isEmpty Boolean No

DreamBoothTrainingRelationFilter

Name Type Nullable
is DreamBoothTrainingWhereInput | Null Yes
isNot DreamBoothTrainingWhereInput | Null Yes

PhotoListRelationFilter

Name Type Nullable
every PhotoWhereInput No
some PhotoWhereInput No
none PhotoWhereInput No

PhotoOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ConceptCountOrderByAggregateInput

Name Type Nullable
name SortOrder No
type SortOrder No
status SortOrder No
description SortOrder No
prompt SortOrder No
identifier SortOrder No
classNoun SortOrder No
negativePrompt SortOrder No
instancePrompt SortOrder No
classPrompt SortOrder No
positivePrompts SortOrder No
negativePrompts SortOrder No
dreamboothTrainingId SortOrder No
dreamboothModelURI SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

ConceptMaxOrderByAggregateInput

Name Type Nullable
name SortOrder No
type SortOrder No
status SortOrder No
description SortOrder No
prompt SortOrder No
identifier SortOrder No
classNoun SortOrder No
negativePrompt SortOrder No
instancePrompt SortOrder No
classPrompt SortOrder No
dreamboothTrainingId SortOrder No
dreamboothModelURI SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

ConceptMinOrderByAggregateInput

Name Type Nullable
name SortOrder No
type SortOrder No
status SortOrder No
description SortOrder No
prompt SortOrder No
identifier SortOrder No
classNoun SortOrder No
negativePrompt SortOrder No
instancePrompt SortOrder No
classPrompt SortOrder No
dreamboothTrainingId SortOrder No
dreamboothModelURI SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

EnumConceptTypeWithAggregatesFilter

Name Type Nullable
equals ConceptType No
in ConceptType[] | ConceptType No
notIn ConceptType[] | ConceptType No
not ConceptType | NestedEnumConceptTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumConceptTypeFilter No
_max NestedEnumConceptTypeFilter No

EnumConceptStatusWithAggregatesFilter

Name Type Nullable
equals ConceptStatus No
in ConceptStatus[] | ConceptStatus No
notIn ConceptStatus[] | ConceptStatus No
not ConceptStatus | NestedEnumConceptStatusWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumConceptStatusFilter No
_max NestedEnumConceptStatusFilter No

JsonNullableFilter

Name Type Nullable
equals Json | JsonNullValueFilter No
path String No
string_contains String No
string_starts_with String No
string_ends_with String No
array_contains Json | Null Yes
array_starts_with Json | Null Yes
array_ends_with Json | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonNullValueFilter No

PredictionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
input SortOrder No
output SortOrder No
status SortOrder No
created_at SortOrder No
started_at SortOrder No
completed_at SortOrder No
version SortOrder No
metrics SortOrder No
error SortOrder No
logs SortOrder No

PredictionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
status SortOrder No
created_at SortOrder No
started_at SortOrder No
completed_at SortOrder No
version SortOrder No
error SortOrder No
logs SortOrder No

PredictionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
status SortOrder No
created_at SortOrder No
started_at SortOrder No
completed_at SortOrder No
version SortOrder No
error SortOrder No
logs SortOrder No

JsonNullableWithAggregatesFilter

Name Type Nullable
equals Json | JsonNullValueFilter No
path String No
string_contains String No
string_starts_with String No
string_ends_with String No
array_contains Json | Null Yes
array_starts_with Json | Null Yes
array_ends_with Json | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonNullValueFilter No
_count NestedIntNullableFilter No
_min NestedJsonNullableFilter No
_max NestedJsonNullableFilter No

IntFilter

Name Type Nullable
equals Int No
in Int | Int No
notIn Int | Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntFilter No

FloatFilter

Name Type Nullable
equals Float No
in Float | Float No
notIn Float | Float No
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatFilter No

EnumLRSchedulerFilter

Name Type Nullable
equals LRScheduler No
in LRScheduler[] | LRScheduler No
notIn LRScheduler[] | LRScheduler No
not LRScheduler | NestedEnumLRSchedulerFilter No

ConceptListRelationFilter

Name Type Nullable
every ConceptWhereInput No
some ConceptWhereInput No
none ConceptWhereInput No

ConceptOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

DreamBoothTrainingCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
instance_prompt SortOrder No
class_prompt SortOrder No
instance_data SortOrder No
class_data SortOrder No
num_class_images SortOrder No
save_sample_prompt SortOrder No
save_sample_negative_prompt SortOrder No
n_save_sample SortOrder No
save_guidance_scale SortOrder No
save_infer_steps SortOrder No
pad_tokens SortOrder No
with_prior_preservation SortOrder No
prior_loss_weight SortOrder No
seed SortOrder No
resolution SortOrder No
center_crop SortOrder No
train_text_encoder SortOrder No
train_batch_size SortOrder No
sample_batch_size SortOrder No
num_train_epochs SortOrder No
max_train_steps SortOrder No
gradient_accumulation_steps SortOrder No
gradient_checkpointing SortOrder No
learning_rate SortOrder No
scale_lr SortOrder No
lr_scheduler SortOrder No
lr_warmup_steps SortOrder No
use_8bit_adam SortOrder No
adam_beta1 SortOrder No
adam_beta2 SortOrder No
adam_weight_decay SortOrder No
adam_epsilon SortOrder No
max_grad_norm SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

DreamBoothTrainingAvgOrderByAggregateInput

Name Type Nullable
num_class_images SortOrder No
n_save_sample SortOrder No
save_guidance_scale SortOrder No
save_infer_steps SortOrder No
prior_loss_weight SortOrder No
seed SortOrder No
resolution SortOrder No
train_batch_size SortOrder No
sample_batch_size SortOrder No
num_train_epochs SortOrder No
max_train_steps SortOrder No
gradient_accumulation_steps SortOrder No
learning_rate SortOrder No
lr_warmup_steps SortOrder No
adam_beta1 SortOrder No
adam_beta2 SortOrder No
adam_weight_decay SortOrder No
adam_epsilon SortOrder No
max_grad_norm SortOrder No

DreamBoothTrainingMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
instance_prompt SortOrder No
class_prompt SortOrder No
instance_data SortOrder No
class_data SortOrder No
num_class_images SortOrder No
save_sample_prompt SortOrder No
save_sample_negative_prompt SortOrder No
n_save_sample SortOrder No
save_guidance_scale SortOrder No
save_infer_steps SortOrder No
pad_tokens SortOrder No
with_prior_preservation SortOrder No
prior_loss_weight SortOrder No
seed SortOrder No
resolution SortOrder No
center_crop SortOrder No
train_text_encoder SortOrder No
train_batch_size SortOrder No
sample_batch_size SortOrder No
num_train_epochs SortOrder No
max_train_steps SortOrder No
gradient_accumulation_steps SortOrder No
gradient_checkpointing SortOrder No
learning_rate SortOrder No
scale_lr SortOrder No
lr_scheduler SortOrder No
lr_warmup_steps SortOrder No
use_8bit_adam SortOrder No
adam_beta1 SortOrder No
adam_beta2 SortOrder No
adam_weight_decay SortOrder No
adam_epsilon SortOrder No
max_grad_norm SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

DreamBoothTrainingMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
instance_prompt SortOrder No
class_prompt SortOrder No
instance_data SortOrder No
class_data SortOrder No
num_class_images SortOrder No
save_sample_prompt SortOrder No
save_sample_negative_prompt SortOrder No
n_save_sample SortOrder No
save_guidance_scale SortOrder No
save_infer_steps SortOrder No
pad_tokens SortOrder No
with_prior_preservation SortOrder No
prior_loss_weight SortOrder No
seed SortOrder No
resolution SortOrder No
center_crop SortOrder No
train_text_encoder SortOrder No
train_batch_size SortOrder No
sample_batch_size SortOrder No
num_train_epochs SortOrder No
max_train_steps SortOrder No
gradient_accumulation_steps SortOrder No
gradient_checkpointing SortOrder No
learning_rate SortOrder No
scale_lr SortOrder No
lr_scheduler SortOrder No
lr_warmup_steps SortOrder No
use_8bit_adam SortOrder No
adam_beta1 SortOrder No
adam_beta2 SortOrder No
adam_weight_decay SortOrder No
adam_epsilon SortOrder No
max_grad_norm SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

DreamBoothTrainingSumOrderByAggregateInput

Name Type Nullable
num_class_images SortOrder No
n_save_sample SortOrder No
save_guidance_scale SortOrder No
save_infer_steps SortOrder No
prior_loss_weight SortOrder No
seed SortOrder No
resolution SortOrder No
train_batch_size SortOrder No
sample_batch_size SortOrder No
num_train_epochs SortOrder No
max_train_steps SortOrder No
gradient_accumulation_steps SortOrder No
learning_rate SortOrder No
lr_warmup_steps SortOrder No
adam_beta1 SortOrder No
adam_beta2 SortOrder No
adam_weight_decay SortOrder No
adam_epsilon SortOrder No
max_grad_norm SortOrder No

IntWithAggregatesFilter

Name Type Nullable
equals Int No
in Int | Int No
notIn Int | Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

FloatWithAggregatesFilter

Name Type Nullable
equals Float No
in Float | Float No
notIn Float | Float No
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedFloatFilter No
_min NestedFloatFilter No
_max NestedFloatFilter No

EnumLRSchedulerWithAggregatesFilter

Name Type Nullable
equals LRScheduler No
in LRScheduler[] | LRScheduler No
notIn LRScheduler[] | LRScheduler No
not LRScheduler | NestedEnumLRSchedulerWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumLRSchedulerFilter No
_max NestedEnumLRSchedulerFilter No

PDFRelationFilter

Name Type Nullable
is PDFWhereInput | Null Yes
isNot PDFWhereInput | Null Yes

EditionCountOrderByAggregateInput

Name Type Nullable
userId SortOrder No
pdfId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

EditionMaxOrderByAggregateInput

Name Type Nullable
userId SortOrder No
pdfId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

EditionMinOrderByAggregateInput

Name Type Nullable
userId SortOrder No
pdfId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

EnumFileResourceTypeFilter

Name Type Nullable
equals FileResourceType No
in FileResourceType[] | FileResourceType No
notIn FileResourceType[] | FileResourceType No
not FileResourceType | NestedEnumFileResourceTypeFilter No

JsonFilter

Name Type Nullable
equals Json | JsonNullValueFilter No
path String No
string_contains String No
string_starts_with String No
string_ends_with String No
array_contains Json | Null Yes
array_starts_with Json | Null Yes
array_ends_with Json | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonNullValueFilter No

EnumCloudFileRegionFilter

Name Type Nullable
equals CloudFileRegion No
in CloudFileRegion[] | CloudFileRegion No
notIn CloudFileRegion[] | CloudFileRegion No
not CloudFileRegion | NestedEnumCloudFileRegionFilter No

EnumFilePrivacyFilter

Name Type Nullable
equals FilePrivacy No
in FilePrivacy[] | FilePrivacy No
notIn FilePrivacy[] | FilePrivacy No
not FilePrivacy | NestedEnumFilePrivacyFilter No

PhotoRelationFilter

Name Type Nullable
is PhotoWhereInput | Null Yes
isNot PhotoWhereInput | Null Yes

CloudFileRegionBucketKeyCompoundUniqueInput

Name Type Nullable
region CloudFileRegion No
bucket String No
key String No

CloudFileCountOrderByAggregateInput

Name Type Nullable
filename SortOrder No
stem SortOrder No
extension SortOrder No
size SortOrder No
mime SortOrder No
resourceType SortOrder No
metadata SortOrder No
key SortOrder No
bucket SortOrder No
region SortOrder No
publicUrl SortOrder No
privacy SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

CloudFileAvgOrderByAggregateInput

Name Type Nullable
size SortOrder No

CloudFileMaxOrderByAggregateInput

Name Type Nullable
filename SortOrder No
stem SortOrder No
extension SortOrder No
size SortOrder No
mime SortOrder No
resourceType SortOrder No
key SortOrder No
bucket SortOrder No
region SortOrder No
publicUrl SortOrder No
privacy SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

CloudFileMinOrderByAggregateInput

Name Type Nullable
filename SortOrder No
stem SortOrder No
extension SortOrder No
size SortOrder No
mime SortOrder No
resourceType SortOrder No
key SortOrder No
bucket SortOrder No
region SortOrder No
publicUrl SortOrder No
privacy SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

CloudFileSumOrderByAggregateInput

Name Type Nullable
size SortOrder No


JsonWithAggregatesFilter

Name Type Nullable
equals Json | JsonNullValueFilter No
path String No
string_contains String No
string_starts_with String No
string_ends_with String No
array_contains Json | Null Yes
array_starts_with Json | Null Yes
array_ends_with Json | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonNullValueFilter No
_count NestedIntFilter No
_min NestedJsonFilter No
_max NestedJsonFilter No


EnumFilePrivacyWithAggregatesFilter

Name Type Nullable
equals FilePrivacy No
in FilePrivacy[] | FilePrivacy No
notIn FilePrivacy[] | FilePrivacy No
not FilePrivacy | NestedEnumFilePrivacyWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumFilePrivacyFilter No
_max NestedEnumFilePrivacyFilter No

CloudFileRelationFilter

Name Type Nullable
is CloudFileWhereInput No
isNot CloudFileWhereInput No

PhotoCountOrderByAggregateInput

Name Type Nullable
height SortOrder No
width SortOrder No
tags SortOrder No
fileId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

PhotoAvgOrderByAggregateInput

Name Type Nullable
height SortOrder No
width SortOrder No

PhotoMaxOrderByAggregateInput

Name Type Nullable
height SortOrder No
width SortOrder No
fileId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

PhotoMinOrderByAggregateInput

Name Type Nullable
height SortOrder No
width SortOrder No
fileId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

PhotoSumOrderByAggregateInput

Name Type Nullable
height SortOrder No
width SortOrder No

EditionRelationFilter

Name Type Nullable
is EditionWhereInput | Null Yes
isNot EditionWhereInput | Null Yes

PDFCountOrderByAggregateInput

Name Type Nullable
height SortOrder No
width SortOrder No
pages SortOrder No
tags SortOrder No
fileId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

PDFAvgOrderByAggregateInput

Name Type Nullable
height SortOrder No
width SortOrder No
pages SortOrder No

PDFMaxOrderByAggregateInput

Name Type Nullable
height SortOrder No
width SortOrder No
pages SortOrder No
fileId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

PDFMinOrderByAggregateInput

Name Type Nullable
height SortOrder No
width SortOrder No
pages SortOrder No
fileId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

PDFSumOrderByAggregateInput

Name Type Nullable
height SortOrder No
width SortOrder No
pages SortOrder No

PageListRelationFilter

Name Type Nullable
every PageWhereInput No
some PageWhereInput No
none PageWhereInput No

PageOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

StoryCountOrderByAggregateInput

Name Type Nullable
artistId SortOrder No
authorId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

StoryMaxOrderByAggregateInput

Name Type Nullable
artistId SortOrder No
authorId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

StoryMinOrderByAggregateInput

Name Type Nullable
artistId SortOrder No
authorId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

EnumPageStatusFilter

Name Type Nullable
equals PageStatus No
in PageStatus[] | PageStatus No
notIn PageStatus[] | PageStatus No
not PageStatus | NestedEnumPageStatusFilter No

PageRelationFilter

Name Type Nullable
is PageWhereInput No
isNot PageWhereInput No

StoryRelationFilter

Name Type Nullable
is StoryWhereInput No
isNot StoryWhereInput No

PageArtworkCountOrderByAggregateInput

Name Type Nullable
status SortOrder No
pageId SortOrder No
storyId SortOrder No
artistId SortOrder No
photoId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

PageArtworkMaxOrderByAggregateInput

Name Type Nullable
status SortOrder No
pageId SortOrder No
storyId SortOrder No
artistId SortOrder No
photoId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

PageArtworkMinOrderByAggregateInput

Name Type Nullable
status SortOrder No
pageId SortOrder No
storyId SortOrder No
artistId SortOrder No
photoId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

EnumPageStatusWithAggregatesFilter

Name Type Nullable
equals PageStatus No
in PageStatus[] | PageStatus No
notIn PageStatus[] | PageStatus No
not PageStatus | NestedEnumPageStatusWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumPageStatusFilter No
_max NestedEnumPageStatusFilter No

EnumLocaleFilter

Name Type Nullable
equals Locale No
in Locale[] | Locale No
notIn Locale[] | Locale No
not Locale | NestedEnumLocaleFilter No

EnumPageTextTypeFilter

Name Type Nullable
equals PageTextType No
in PageTextType[] | PageTextType No
notIn PageTextType[] | PageTextType No
not PageTextType | NestedEnumPageTextTypeFilter No

TranslatorRelationFilter

Name Type Nullable
is TranslatorWhereInput | Null Yes
isNot TranslatorWhereInput | Null Yes

PageTextCountOrderByAggregateInput

Name Type Nullable
status SortOrder No
locale SortOrder No
text SortOrder No
type SortOrder No
pageId SortOrder No
storyId SortOrder No
authorId SortOrder No
translatorId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

PageTextMaxOrderByAggregateInput

Name Type Nullable
status SortOrder No
locale SortOrder No
text SortOrder No
type SortOrder No
pageId SortOrder No
storyId SortOrder No
authorId SortOrder No
translatorId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

PageTextMinOrderByAggregateInput

Name Type Nullable
status SortOrder No
locale SortOrder No
text SortOrder No
type SortOrder No
pageId SortOrder No
storyId SortOrder No
authorId SortOrder No
translatorId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

EnumLocaleWithAggregatesFilter

Name Type Nullable
equals Locale No
in Locale[] | Locale No
notIn Locale[] | Locale No
not Locale | NestedEnumLocaleWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumLocaleFilter No
_max NestedEnumLocaleFilter No

EnumPageTextTypeWithAggregatesFilter

Name Type Nullable
equals PageTextType No
in PageTextType[] | PageTextType No
notIn PageTextType[] | PageTextType No
not PageTextType | NestedEnumPageTextTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumPageTextTypeFilter No
_max NestedEnumPageTextTypeFilter No

EnumPageTypeFilter

Name Type Nullable
equals PageType No
in PageType[] | PageType No
notIn PageType[] | PageType No
not PageType | NestedEnumPageTypeFilter No

PageCountOrderByAggregateInput

Name Type Nullable
status SortOrder No
type SortOrder No
pageNumber SortOrder No
storyId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

PageAvgOrderByAggregateInput

Name Type Nullable
pageNumber SortOrder No

PageMaxOrderByAggregateInput

Name Type Nullable
status SortOrder No
type SortOrder No
pageNumber SortOrder No
storyId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

PageMinOrderByAggregateInput

Name Type Nullable
status SortOrder No
type SortOrder No
pageNumber SortOrder No
storyId SortOrder No
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
deletedAt SortOrder No
zenstack_guard SortOrder No
zenstack_transaction SortOrder No

PageSumOrderByAggregateInput

Name Type Nullable
pageNumber SortOrder No

EnumPageTypeWithAggregatesFilter

Name Type Nullable
equals PageType No
in PageType[] | PageType No
notIn PageType[] | PageType No
not PageType | NestedEnumPageTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumPageTypeFilter No
_max NestedEnumPageTypeFilter No

ArtistCreateNestedOneWithoutUserInput

Name Type Nullable
create ArtistCreateWithoutUserInput | ArtistUncheckedCreateWithoutUserInput No
connectOrCreate ArtistCreateOrConnectWithoutUserInput No
connect ArtistWhereUniqueInput No

AuthorCreateNestedOneWithoutUserInput

Name Type Nullable
create AuthorCreateWithoutUserInput | AuthorUncheckedCreateWithoutUserInput No
connectOrCreate AuthorCreateOrConnectWithoutUserInput No
connect AuthorWhereUniqueInput No


ArtistUncheckedCreateNestedOneWithoutUserInput

Name Type Nullable
create ArtistCreateWithoutUserInput | ArtistUncheckedCreateWithoutUserInput No
connectOrCreate ArtistCreateOrConnectWithoutUserInput No
connect ArtistWhereUniqueInput No

AuthorUncheckedCreateNestedOneWithoutUserInput

Name Type Nullable
create AuthorCreateWithoutUserInput | AuthorUncheckedCreateWithoutUserInput No
connectOrCreate AuthorCreateOrConnectWithoutUserInput No
connect AuthorWhereUniqueInput No


StringFieldUpdateOperationsInput

Name Type Nullable
set String No

DateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime No

NullableDateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime | Null Yes

BoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean No

NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes

ArtistUpdateOneWithoutUserNestedInput

Name Type Nullable
create ArtistCreateWithoutUserInput | ArtistUncheckedCreateWithoutUserInput No
connectOrCreate ArtistCreateOrConnectWithoutUserInput No
upsert ArtistUpsertWithoutUserInput No
disconnect Boolean No
delete Boolean No
connect ArtistWhereUniqueInput No
update ArtistUpdateWithoutUserInput | ArtistUncheckedUpdateWithoutUserInput No

AuthorUpdateOneWithoutUserNestedInput

Name Type Nullable
create AuthorCreateWithoutUserInput | AuthorUncheckedCreateWithoutUserInput No
connectOrCreate AuthorCreateOrConnectWithoutUserInput No
upsert AuthorUpsertWithoutUserInput No
disconnect Boolean No
delete Boolean No
connect AuthorWhereUniqueInput No
update AuthorUpdateWithoutUserInput | AuthorUncheckedUpdateWithoutUserInput No

EditionUpdateManyWithoutUserNestedInput

Name Type Nullable
create EditionCreateWithoutUserInput | EditionCreateWithoutUserInput[] | EditionUncheckedCreateWithoutUserInput | EditionUncheckedCreateWithoutUserInput[] No
connectOrCreate EditionCreateOrConnectWithoutUserInput | EditionCreateOrConnectWithoutUserInput[] No
upsert EditionUpsertWithWhereUniqueWithoutUserInput | EditionUpsertWithWhereUniqueWithoutUserInput[] No
createMany EditionCreateManyUserInputEnvelope No
set EditionWhereUniqueInput | EditionWhereUniqueInput[] No
disconnect EditionWhereUniqueInput | EditionWhereUniqueInput[] No
delete EditionWhereUniqueInput | EditionWhereUniqueInput[] No
connect EditionWhereUniqueInput | EditionWhereUniqueInput[] No
update EditionUpdateWithWhereUniqueWithoutUserInput | EditionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany EditionUpdateManyWithWhereWithoutUserInput | EditionUpdateManyWithWhereWithoutUserInput[] No
deleteMany EditionScalarWhereInput | EditionScalarWhereInput[] No

ArtistUncheckedUpdateOneWithoutUserNestedInput

Name Type Nullable
create ArtistCreateWithoutUserInput | ArtistUncheckedCreateWithoutUserInput No
connectOrCreate ArtistCreateOrConnectWithoutUserInput No
upsert ArtistUpsertWithoutUserInput No
disconnect Boolean No
delete Boolean No
connect ArtistWhereUniqueInput No
update ArtistUpdateWithoutUserInput | ArtistUncheckedUpdateWithoutUserInput No

AuthorUncheckedUpdateOneWithoutUserNestedInput

Name Type Nullable
create AuthorCreateWithoutUserInput | AuthorUncheckedCreateWithoutUserInput No
connectOrCreate AuthorCreateOrConnectWithoutUserInput No
upsert AuthorUpsertWithoutUserInput No
disconnect Boolean No
delete Boolean No
connect AuthorWhereUniqueInput No
update AuthorUpdateWithoutUserInput | AuthorUncheckedUpdateWithoutUserInput No

EditionUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create EditionCreateWithoutUserInput | EditionCreateWithoutUserInput[] | EditionUncheckedCreateWithoutUserInput | EditionUncheckedCreateWithoutUserInput[] No
connectOrCreate EditionCreateOrConnectWithoutUserInput | EditionCreateOrConnectWithoutUserInput[] No
upsert EditionUpsertWithWhereUniqueWithoutUserInput | EditionUpsertWithWhereUniqueWithoutUserInput[] No
createMany EditionCreateManyUserInputEnvelope No
set EditionWhereUniqueInput | EditionWhereUniqueInput[] No
disconnect EditionWhereUniqueInput | EditionWhereUniqueInput[] No
delete EditionWhereUniqueInput | EditionWhereUniqueInput[] No
connect EditionWhereUniqueInput | EditionWhereUniqueInput[] No
update EditionUpdateWithWhereUniqueWithoutUserInput | EditionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany EditionUpdateManyWithWhereWithoutUserInput | EditionUpdateManyWithWhereWithoutUserInput[] No
deleteMany EditionScalarWhereInput | EditionScalarWhereInput[] No



UserCreateNestedOneWithoutAuthorInput

Name Type Nullable
create UserCreateWithoutAuthorInput | UserUncheckedCreateWithoutAuthorInput No
connectOrCreate UserCreateOrConnectWithoutAuthorInput No
connect UserWhereUniqueInput No



StoryUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create StoryCreateWithoutAuthorInput | StoryCreateWithoutAuthorInput[] | StoryUncheckedCreateWithoutAuthorInput | StoryUncheckedCreateWithoutAuthorInput[] No
connectOrCreate StoryCreateOrConnectWithoutAuthorInput | StoryCreateOrConnectWithoutAuthorInput[] No
upsert StoryUpsertWithWhereUniqueWithoutAuthorInput | StoryUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany StoryCreateManyAuthorInputEnvelope No
set StoryWhereUniqueInput | StoryWhereUniqueInput[] No
disconnect StoryWhereUniqueInput | StoryWhereUniqueInput[] No
delete StoryWhereUniqueInput | StoryWhereUniqueInput[] No
connect StoryWhereUniqueInput | StoryWhereUniqueInput[] No
update StoryUpdateWithWhereUniqueWithoutAuthorInput | StoryUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany StoryUpdateManyWithWhereWithoutAuthorInput | StoryUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany StoryScalarWhereInput | StoryScalarWhereInput[] No

PageTextUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create PageTextCreateWithoutAuthorInput | PageTextCreateWithoutAuthorInput[] | PageTextUncheckedCreateWithoutAuthorInput | PageTextUncheckedCreateWithoutAuthorInput[] No
connectOrCreate PageTextCreateOrConnectWithoutAuthorInput | PageTextCreateOrConnectWithoutAuthorInput[] No
upsert PageTextUpsertWithWhereUniqueWithoutAuthorInput | PageTextUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany PageTextCreateManyAuthorInputEnvelope No
set PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
disconnect PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
delete PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
connect PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
update PageTextUpdateWithWhereUniqueWithoutAuthorInput | PageTextUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany PageTextUpdateManyWithWhereWithoutAuthorInput | PageTextUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany PageTextScalarWhereInput | PageTextScalarWhereInput[] No


StoryUncheckedUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create StoryCreateWithoutAuthorInput | StoryCreateWithoutAuthorInput[] | StoryUncheckedCreateWithoutAuthorInput | StoryUncheckedCreateWithoutAuthorInput[] No
connectOrCreate StoryCreateOrConnectWithoutAuthorInput | StoryCreateOrConnectWithoutAuthorInput[] No
upsert StoryUpsertWithWhereUniqueWithoutAuthorInput | StoryUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany StoryCreateManyAuthorInputEnvelope No
set StoryWhereUniqueInput | StoryWhereUniqueInput[] No
disconnect StoryWhereUniqueInput | StoryWhereUniqueInput[] No
delete StoryWhereUniqueInput | StoryWhereUniqueInput[] No
connect StoryWhereUniqueInput | StoryWhereUniqueInput[] No
update StoryUpdateWithWhereUniqueWithoutAuthorInput | StoryUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany StoryUpdateManyWithWhereWithoutAuthorInput | StoryUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany StoryScalarWhereInput | StoryScalarWhereInput[] No

PageTextUncheckedUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create PageTextCreateWithoutAuthorInput | PageTextCreateWithoutAuthorInput[] | PageTextUncheckedCreateWithoutAuthorInput | PageTextUncheckedCreateWithoutAuthorInput[] No
connectOrCreate PageTextCreateOrConnectWithoutAuthorInput | PageTextCreateOrConnectWithoutAuthorInput[] No
upsert PageTextUpsertWithWhereUniqueWithoutAuthorInput | PageTextUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany PageTextCreateManyAuthorInputEnvelope No
set PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
disconnect PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
delete PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
connect PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
update PageTextUpdateWithWhereUniqueWithoutAuthorInput | PageTextUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany PageTextUpdateManyWithWhereWithoutAuthorInput | PageTextUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany PageTextScalarWhereInput | PageTextScalarWhereInput[] No



UserCreateNestedOneWithoutArtistInput

Name Type Nullable
create UserCreateWithoutArtistInput | UserUncheckedCreateWithoutArtistInput No
connectOrCreate UserCreateOrConnectWithoutArtistInput No
connect UserWhereUniqueInput No



StoryUpdateManyWithoutArtistNestedInput

Name Type Nullable
create StoryCreateWithoutArtistInput | StoryCreateWithoutArtistInput[] | StoryUncheckedCreateWithoutArtistInput | StoryUncheckedCreateWithoutArtistInput[] No
connectOrCreate StoryCreateOrConnectWithoutArtistInput | StoryCreateOrConnectWithoutArtistInput[] No
upsert StoryUpsertWithWhereUniqueWithoutArtistInput | StoryUpsertWithWhereUniqueWithoutArtistInput[] No
createMany StoryCreateManyArtistInputEnvelope No
set StoryWhereUniqueInput | StoryWhereUniqueInput[] No
disconnect StoryWhereUniqueInput | StoryWhereUniqueInput[] No
delete StoryWhereUniqueInput | StoryWhereUniqueInput[] No
connect StoryWhereUniqueInput | StoryWhereUniqueInput[] No
update StoryUpdateWithWhereUniqueWithoutArtistInput | StoryUpdateWithWhereUniqueWithoutArtistInput[] No
updateMany StoryUpdateManyWithWhereWithoutArtistInput | StoryUpdateManyWithWhereWithoutArtistInput[] No
deleteMany StoryScalarWhereInput | StoryScalarWhereInput[] No

PageArtworkUpdateManyWithoutArtistNestedInput

Name Type Nullable
create PageArtworkCreateWithoutArtistInput | PageArtworkCreateWithoutArtistInput[] | PageArtworkUncheckedCreateWithoutArtistInput | PageArtworkUncheckedCreateWithoutArtistInput[] No
connectOrCreate PageArtworkCreateOrConnectWithoutArtistInput | PageArtworkCreateOrConnectWithoutArtistInput[] No
upsert PageArtworkUpsertWithWhereUniqueWithoutArtistInput | PageArtworkUpsertWithWhereUniqueWithoutArtistInput[] No
createMany PageArtworkCreateManyArtistInputEnvelope No
set PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
disconnect PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
delete PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
connect PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
update PageArtworkUpdateWithWhereUniqueWithoutArtistInput | PageArtworkUpdateWithWhereUniqueWithoutArtistInput[] No
updateMany PageArtworkUpdateManyWithWhereWithoutArtistInput | PageArtworkUpdateManyWithWhereWithoutArtistInput[] No
deleteMany PageArtworkScalarWhereInput | PageArtworkScalarWhereInput[] No


StoryUncheckedUpdateManyWithoutArtistNestedInput

Name Type Nullable
create StoryCreateWithoutArtistInput | StoryCreateWithoutArtistInput[] | StoryUncheckedCreateWithoutArtistInput | StoryUncheckedCreateWithoutArtistInput[] No
connectOrCreate StoryCreateOrConnectWithoutArtistInput | StoryCreateOrConnectWithoutArtistInput[] No
upsert StoryUpsertWithWhereUniqueWithoutArtistInput | StoryUpsertWithWhereUniqueWithoutArtistInput[] No
createMany StoryCreateManyArtistInputEnvelope No
set StoryWhereUniqueInput | StoryWhereUniqueInput[] No
disconnect StoryWhereUniqueInput | StoryWhereUniqueInput[] No
delete StoryWhereUniqueInput | StoryWhereUniqueInput[] No
connect StoryWhereUniqueInput | StoryWhereUniqueInput[] No
update StoryUpdateWithWhereUniqueWithoutArtistInput | StoryUpdateWithWhereUniqueWithoutArtistInput[] No
updateMany StoryUpdateManyWithWhereWithoutArtistInput | StoryUpdateManyWithWhereWithoutArtistInput[] No
deleteMany StoryScalarWhereInput | StoryScalarWhereInput[] No

PageArtworkUncheckedUpdateManyWithoutArtistNestedInput

Name Type Nullable
create PageArtworkCreateWithoutArtistInput | PageArtworkCreateWithoutArtistInput[] | PageArtworkUncheckedCreateWithoutArtistInput | PageArtworkUncheckedCreateWithoutArtistInput[] No
connectOrCreate PageArtworkCreateOrConnectWithoutArtistInput | PageArtworkCreateOrConnectWithoutArtistInput[] No
upsert PageArtworkUpsertWithWhereUniqueWithoutArtistInput | PageArtworkUpsertWithWhereUniqueWithoutArtistInput[] No
createMany PageArtworkCreateManyArtistInputEnvelope No
set PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
disconnect PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
delete PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
connect PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
update PageArtworkUpdateWithWhereUniqueWithoutArtistInput | PageArtworkUpdateWithWhereUniqueWithoutArtistInput[] No
updateMany PageArtworkUpdateManyWithWhereWithoutArtistInput | PageArtworkUpdateManyWithWhereWithoutArtistInput[] No
deleteMany PageArtworkScalarWhereInput | PageArtworkScalarWhereInput[] No



PageTextUpdateManyWithoutTranslatorNestedInput

Name Type Nullable
create PageTextCreateWithoutTranslatorInput | PageTextCreateWithoutTranslatorInput[] | PageTextUncheckedCreateWithoutTranslatorInput | PageTextUncheckedCreateWithoutTranslatorInput[] No
connectOrCreate PageTextCreateOrConnectWithoutTranslatorInput | PageTextCreateOrConnectWithoutTranslatorInput[] No
upsert PageTextUpsertWithWhereUniqueWithoutTranslatorInput | PageTextUpsertWithWhereUniqueWithoutTranslatorInput[] No
createMany PageTextCreateManyTranslatorInputEnvelope No
set PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
disconnect PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
delete PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
connect PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
update PageTextUpdateWithWhereUniqueWithoutTranslatorInput | PageTextUpdateWithWhereUniqueWithoutTranslatorInput[] No
updateMany PageTextUpdateManyWithWhereWithoutTranslatorInput | PageTextUpdateManyWithWhereWithoutTranslatorInput[] No
deleteMany PageTextScalarWhereInput | PageTextScalarWhereInput[] No

PageTextUncheckedUpdateManyWithoutTranslatorNestedInput

Name Type Nullable
create PageTextCreateWithoutTranslatorInput | PageTextCreateWithoutTranslatorInput[] | PageTextUncheckedCreateWithoutTranslatorInput | PageTextUncheckedCreateWithoutTranslatorInput[] No
connectOrCreate PageTextCreateOrConnectWithoutTranslatorInput | PageTextCreateOrConnectWithoutTranslatorInput[] No
upsert PageTextUpsertWithWhereUniqueWithoutTranslatorInput | PageTextUpsertWithWhereUniqueWithoutTranslatorInput[] No
createMany PageTextCreateManyTranslatorInputEnvelope No
set PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
disconnect PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
delete PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
connect PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
update PageTextUpdateWithWhereUniqueWithoutTranslatorInput | PageTextUpdateWithWhereUniqueWithoutTranslatorInput[] No
updateMany PageTextUpdateManyWithWhereWithoutTranslatorInput | PageTextUpdateManyWithWhereWithoutTranslatorInput[] No
deleteMany PageTextScalarWhereInput | PageTextScalarWhereInput[] No

ConceptCreatepositivePromptsInput

Name Type Nullable
set String No

ConceptCreatenegativePromptsInput

Name Type Nullable
set String No




EnumConceptTypeFieldUpdateOperationsInput

Name Type Nullable
set ConceptType No

EnumConceptStatusFieldUpdateOperationsInput

Name Type Nullable
set ConceptStatus No

ConceptUpdatepositivePromptsInput

Name Type Nullable
set String No
push String | String No

ConceptUpdatenegativePromptsInput

Name Type Nullable
set String No
push String | String No


PhotoUpdateManyWithoutConceptsNestedInput

Name Type Nullable
create PhotoCreateWithoutConceptsInput | PhotoCreateWithoutConceptsInput[] | PhotoUncheckedCreateWithoutConceptsInput | PhotoUncheckedCreateWithoutConceptsInput[] No
connectOrCreate PhotoCreateOrConnectWithoutConceptsInput | PhotoCreateOrConnectWithoutConceptsInput[] No
upsert PhotoUpsertWithWhereUniqueWithoutConceptsInput | PhotoUpsertWithWhereUniqueWithoutConceptsInput[] No
set PhotoWhereUniqueInput | PhotoWhereUniqueInput[] No
disconnect PhotoWhereUniqueInput | PhotoWhereUniqueInput[] No
delete PhotoWhereUniqueInput | PhotoWhereUniqueInput[] No
connect PhotoWhereUniqueInput | PhotoWhereUniqueInput[] No
update PhotoUpdateWithWhereUniqueWithoutConceptsInput | PhotoUpdateWithWhereUniqueWithoutConceptsInput[] No
updateMany PhotoUpdateManyWithWhereWithoutConceptsInput | PhotoUpdateManyWithWhereWithoutConceptsInput[] No
deleteMany PhotoScalarWhereInput | PhotoScalarWhereInput[] No

PhotoUncheckedUpdateManyWithoutConceptsNestedInput

Name Type Nullable
create PhotoCreateWithoutConceptsInput | PhotoCreateWithoutConceptsInput[] | PhotoUncheckedCreateWithoutConceptsInput | PhotoUncheckedCreateWithoutConceptsInput[] No
connectOrCreate PhotoCreateOrConnectWithoutConceptsInput | PhotoCreateOrConnectWithoutConceptsInput[] No
upsert PhotoUpsertWithWhereUniqueWithoutConceptsInput | PhotoUpsertWithWhereUniqueWithoutConceptsInput[] No
set PhotoWhereUniqueInput | PhotoWhereUniqueInput[] No
disconnect PhotoWhereUniqueInput | PhotoWhereUniqueInput[] No
delete PhotoWhereUniqueInput | PhotoWhereUniqueInput[] No
connect PhotoWhereUniqueInput | PhotoWhereUniqueInput[] No
update PhotoUpdateWithWhereUniqueWithoutConceptsInput | PhotoUpdateWithWhereUniqueWithoutConceptsInput[] No
updateMany PhotoUpdateManyWithWhereWithoutConceptsInput | PhotoUpdateManyWithWhereWithoutConceptsInput[] No
deleteMany PhotoScalarWhereInput | PhotoScalarWhereInput[] No



IntFieldUpdateOperationsInput

Name Type Nullable
set Int No
increment Int No
decrement Int No
multiply Int No
divide Int No

FloatFieldUpdateOperationsInput

Name Type Nullable
set Float No
increment Float No
decrement Float No
multiply Float No
divide Float No

EnumLRSchedulerFieldUpdateOperationsInput

Name Type Nullable
set LRScheduler No

ConceptUpdateManyWithoutDreamboothTrainingNestedInput

Name Type Nullable
create ConceptCreateWithoutDreamboothTrainingInput | ConceptCreateWithoutDreamboothTrainingInput[] | ConceptUncheckedCreateWithoutDreamboothTrainingInput | ConceptUncheckedCreateWithoutDreamboothTrainingInput[] No
connectOrCreate ConceptCreateOrConnectWithoutDreamboothTrainingInput | ConceptCreateOrConnectWithoutDreamboothTrainingInput[] No
upsert ConceptUpsertWithWhereUniqueWithoutDreamboothTrainingInput | ConceptUpsertWithWhereUniqueWithoutDreamboothTrainingInput[] No
createMany ConceptCreateManyDreamboothTrainingInputEnvelope No
set ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
disconnect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
delete ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
connect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
update ConceptUpdateWithWhereUniqueWithoutDreamboothTrainingInput | ConceptUpdateWithWhereUniqueWithoutDreamboothTrainingInput[] No
updateMany ConceptUpdateManyWithWhereWithoutDreamboothTrainingInput | ConceptUpdateManyWithWhereWithoutDreamboothTrainingInput[] No
deleteMany ConceptScalarWhereInput | ConceptScalarWhereInput[] No

ConceptUncheckedUpdateManyWithoutDreamboothTrainingNestedInput

Name Type Nullable
create ConceptCreateWithoutDreamboothTrainingInput | ConceptCreateWithoutDreamboothTrainingInput[] | ConceptUncheckedCreateWithoutDreamboothTrainingInput | ConceptUncheckedCreateWithoutDreamboothTrainingInput[] No
connectOrCreate ConceptCreateOrConnectWithoutDreamboothTrainingInput | ConceptCreateOrConnectWithoutDreamboothTrainingInput[] No
upsert ConceptUpsertWithWhereUniqueWithoutDreamboothTrainingInput | ConceptUpsertWithWhereUniqueWithoutDreamboothTrainingInput[] No
createMany ConceptCreateManyDreamboothTrainingInputEnvelope No
set ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
disconnect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
delete ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
connect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
update ConceptUpdateWithWhereUniqueWithoutDreamboothTrainingInput | ConceptUpdateWithWhereUniqueWithoutDreamboothTrainingInput[] No
updateMany ConceptUpdateManyWithWhereWithoutDreamboothTrainingInput | ConceptUpdateManyWithWhereWithoutDreamboothTrainingInput[] No
deleteMany ConceptScalarWhereInput | ConceptScalarWhereInput[] No

UserCreateNestedOneWithoutEditionsInput

Name Type Nullable
create UserCreateWithoutEditionsInput | UserUncheckedCreateWithoutEditionsInput No
connectOrCreate UserCreateOrConnectWithoutEditionsInput No
connect UserWhereUniqueInput No

PDFCreateNestedOneWithoutEditionInput

Name Type Nullable
create PDFCreateWithoutEditionInput | PDFUncheckedCreateWithoutEditionInput No
connectOrCreate PDFCreateOrConnectWithoutEditionInput No
connect PDFWhereUniqueInput No



PhotoCreateNestedOneWithoutFileInput

Name Type Nullable
create PhotoCreateWithoutFileInput | PhotoUncheckedCreateWithoutFileInput No
connectOrCreate PhotoCreateOrConnectWithoutFileInput No
connect PhotoWhereUniqueInput No

PDFCreateNestedOneWithoutFileInput

Name Type Nullable
create PDFCreateWithoutFileInput | PDFUncheckedCreateWithoutFileInput No
connectOrCreate PDFCreateOrConnectWithoutFileInput No
connect PDFWhereUniqueInput No

PhotoUncheckedCreateNestedOneWithoutFileInput

Name Type Nullable
create PhotoCreateWithoutFileInput | PhotoUncheckedCreateWithoutFileInput No
connectOrCreate PhotoCreateOrConnectWithoutFileInput No
connect PhotoWhereUniqueInput No

PDFUncheckedCreateNestedOneWithoutFileInput

Name Type Nullable
create PDFCreateWithoutFileInput | PDFUncheckedCreateWithoutFileInput No
connectOrCreate PDFCreateOrConnectWithoutFileInput No
connect PDFWhereUniqueInput No

EnumFileResourceTypeFieldUpdateOperationsInput

Name Type Nullable
set FileResourceType No

EnumCloudFileRegionFieldUpdateOperationsInput

Name Type Nullable
set CloudFileRegion No

EnumFilePrivacyFieldUpdateOperationsInput

Name Type Nullable
set FilePrivacy No

PhotoUpdateOneWithoutFileNestedInput

Name Type Nullable
create PhotoCreateWithoutFileInput | PhotoUncheckedCreateWithoutFileInput No
connectOrCreate PhotoCreateOrConnectWithoutFileInput No
upsert PhotoUpsertWithoutFileInput No
disconnect Boolean No
delete Boolean No
connect PhotoWhereUniqueInput No
update PhotoUpdateWithoutFileInput | PhotoUncheckedUpdateWithoutFileInput No

PDFUpdateOneWithoutFileNestedInput

Name Type Nullable
create PDFCreateWithoutFileInput | PDFUncheckedCreateWithoutFileInput No
connectOrCreate PDFCreateOrConnectWithoutFileInput No
upsert PDFUpsertWithoutFileInput No
disconnect Boolean No
delete Boolean No
connect PDFWhereUniqueInput No
update PDFUpdateWithoutFileInput | PDFUncheckedUpdateWithoutFileInput No

PhotoUncheckedUpdateOneWithoutFileNestedInput

Name Type Nullable
create PhotoCreateWithoutFileInput | PhotoUncheckedCreateWithoutFileInput No
connectOrCreate PhotoCreateOrConnectWithoutFileInput No
upsert PhotoUpsertWithoutFileInput No
disconnect Boolean No
delete Boolean No
connect PhotoWhereUniqueInput No
update PhotoUpdateWithoutFileInput | PhotoUncheckedUpdateWithoutFileInput No

PDFUncheckedUpdateOneWithoutFileNestedInput

Name Type Nullable
create PDFCreateWithoutFileInput | PDFUncheckedCreateWithoutFileInput No
connectOrCreate PDFCreateOrConnectWithoutFileInput No
upsert PDFUpsertWithoutFileInput No
disconnect Boolean No
delete Boolean No
connect PDFWhereUniqueInput No
update PDFUpdateWithoutFileInput | PDFUncheckedUpdateWithoutFileInput No

PhotoCreatetagsInput

Name Type Nullable
set String No

CloudFileCreateNestedOneWithoutPhotoInput

Name Type Nullable
create CloudFileCreateWithoutPhotoInput | CloudFileUncheckedCreateWithoutPhotoInput No
connectOrCreate CloudFileCreateOrConnectWithoutPhotoInput No
connect CloudFileWhereUniqueInput No





PhotoUpdatetagsInput

Name Type Nullable
set String No
push String | String No


PageArtworkUpdateManyWithoutPhotoNestedInput

Name Type Nullable
create PageArtworkCreateWithoutPhotoInput | PageArtworkCreateWithoutPhotoInput[] | PageArtworkUncheckedCreateWithoutPhotoInput | PageArtworkUncheckedCreateWithoutPhotoInput[] No
connectOrCreate PageArtworkCreateOrConnectWithoutPhotoInput | PageArtworkCreateOrConnectWithoutPhotoInput[] No
upsert PageArtworkUpsertWithWhereUniqueWithoutPhotoInput | PageArtworkUpsertWithWhereUniqueWithoutPhotoInput[] No
createMany PageArtworkCreateManyPhotoInputEnvelope No
set PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
disconnect PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
delete PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
connect PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
update PageArtworkUpdateWithWhereUniqueWithoutPhotoInput | PageArtworkUpdateWithWhereUniqueWithoutPhotoInput[] No
updateMany PageArtworkUpdateManyWithWhereWithoutPhotoInput | PageArtworkUpdateManyWithWhereWithoutPhotoInput[] No
deleteMany PageArtworkScalarWhereInput | PageArtworkScalarWhereInput[] No

ConceptUpdateManyWithoutPhotosNestedInput

Name Type Nullable
create ConceptCreateWithoutPhotosInput | ConceptCreateWithoutPhotosInput[] | ConceptUncheckedCreateWithoutPhotosInput | ConceptUncheckedCreateWithoutPhotosInput[] No
connectOrCreate ConceptCreateOrConnectWithoutPhotosInput | ConceptCreateOrConnectWithoutPhotosInput[] No
upsert ConceptUpsertWithWhereUniqueWithoutPhotosInput | ConceptUpsertWithWhereUniqueWithoutPhotosInput[] No
set ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
disconnect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
delete ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
connect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
update ConceptUpdateWithWhereUniqueWithoutPhotosInput | ConceptUpdateWithWhereUniqueWithoutPhotosInput[] No
updateMany ConceptUpdateManyWithWhereWithoutPhotosInput | ConceptUpdateManyWithWhereWithoutPhotosInput[] No
deleteMany ConceptScalarWhereInput | ConceptScalarWhereInput[] No

PageArtworkUncheckedUpdateManyWithoutPhotoNestedInput

Name Type Nullable
create PageArtworkCreateWithoutPhotoInput | PageArtworkCreateWithoutPhotoInput[] | PageArtworkUncheckedCreateWithoutPhotoInput | PageArtworkUncheckedCreateWithoutPhotoInput[] No
connectOrCreate PageArtworkCreateOrConnectWithoutPhotoInput | PageArtworkCreateOrConnectWithoutPhotoInput[] No
upsert PageArtworkUpsertWithWhereUniqueWithoutPhotoInput | PageArtworkUpsertWithWhereUniqueWithoutPhotoInput[] No
createMany PageArtworkCreateManyPhotoInputEnvelope No
set PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
disconnect PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
delete PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
connect PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
update PageArtworkUpdateWithWhereUniqueWithoutPhotoInput | PageArtworkUpdateWithWhereUniqueWithoutPhotoInput[] No
updateMany PageArtworkUpdateManyWithWhereWithoutPhotoInput | PageArtworkUpdateManyWithWhereWithoutPhotoInput[] No
deleteMany PageArtworkScalarWhereInput | PageArtworkScalarWhereInput[] No

ConceptUncheckedUpdateManyWithoutPhotosNestedInput

Name Type Nullable
create ConceptCreateWithoutPhotosInput | ConceptCreateWithoutPhotosInput[] | ConceptUncheckedCreateWithoutPhotosInput | ConceptUncheckedCreateWithoutPhotosInput[] No
connectOrCreate ConceptCreateOrConnectWithoutPhotosInput | ConceptCreateOrConnectWithoutPhotosInput[] No
upsert ConceptUpsertWithWhereUniqueWithoutPhotosInput | ConceptUpsertWithWhereUniqueWithoutPhotosInput[] No
set ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
disconnect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
delete ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
connect ConceptWhereUniqueInput | ConceptWhereUniqueInput[] No
update ConceptUpdateWithWhereUniqueWithoutPhotosInput | ConceptUpdateWithWhereUniqueWithoutPhotosInput[] No
updateMany ConceptUpdateManyWithWhereWithoutPhotosInput | ConceptUpdateManyWithWhereWithoutPhotosInput[] No
deleteMany ConceptScalarWhereInput | ConceptScalarWhereInput[] No

PDFCreatetagsInput

Name Type Nullable
set String No

CloudFileCreateNestedOneWithoutPdfInput

Name Type Nullable
create CloudFileCreateWithoutPdfInput | CloudFileUncheckedCreateWithoutPdfInput No
connectOrCreate CloudFileCreateOrConnectWithoutPdfInput No
connect CloudFileWhereUniqueInput No

EditionCreateNestedOneWithoutPdfInput

Name Type Nullable
create EditionCreateWithoutPdfInput | EditionUncheckedCreateWithoutPdfInput No
connectOrCreate EditionCreateOrConnectWithoutPdfInput No
connect EditionWhereUniqueInput No

EditionUncheckedCreateNestedOneWithoutPdfInput

Name Type Nullable
create EditionCreateWithoutPdfInput | EditionUncheckedCreateWithoutPdfInput No
connectOrCreate EditionCreateOrConnectWithoutPdfInput No
connect EditionWhereUniqueInput No

PDFUpdatetagsInput

Name Type Nullable
set String No
push String | String No


EditionUpdateOneWithoutPdfNestedInput

Name Type Nullable
create EditionCreateWithoutPdfInput | EditionUncheckedCreateWithoutPdfInput No
connectOrCreate EditionCreateOrConnectWithoutPdfInput No
upsert EditionUpsertWithoutPdfInput No
disconnect Boolean No
delete Boolean No
connect EditionWhereUniqueInput No
update EditionUpdateWithoutPdfInput | EditionUncheckedUpdateWithoutPdfInput No

EditionUncheckedUpdateOneWithoutPdfNestedInput

Name Type Nullable
create EditionCreateWithoutPdfInput | EditionUncheckedCreateWithoutPdfInput No
connectOrCreate EditionCreateOrConnectWithoutPdfInput No
upsert EditionUpsertWithoutPdfInput No
disconnect Boolean No
delete Boolean No
connect EditionWhereUniqueInput No
update EditionUpdateWithoutPdfInput | EditionUncheckedUpdateWithoutPdfInput No

ArtistCreateNestedOneWithoutStoriesInput

Name Type Nullable
create ArtistCreateWithoutStoriesInput | ArtistUncheckedCreateWithoutStoriesInput No
connectOrCreate ArtistCreateOrConnectWithoutStoriesInput No
connect ArtistWhereUniqueInput No

AuthorCreateNestedOneWithoutStoriesInput

Name Type Nullable
create AuthorCreateWithoutStoriesInput | AuthorUncheckedCreateWithoutStoriesInput No
connectOrCreate AuthorCreateOrConnectWithoutStoriesInput No
connect AuthorWhereUniqueInput No







ArtistUpdateOneWithoutStoriesNestedInput

Name Type Nullable
create ArtistCreateWithoutStoriesInput | ArtistUncheckedCreateWithoutStoriesInput No
connectOrCreate ArtistCreateOrConnectWithoutStoriesInput No
upsert ArtistUpsertWithoutStoriesInput No
disconnect Boolean No
delete Boolean No
connect ArtistWhereUniqueInput No
update ArtistUpdateWithoutStoriesInput | ArtistUncheckedUpdateWithoutStoriesInput No

AuthorUpdateOneWithoutStoriesNestedInput

Name Type Nullable
create AuthorCreateWithoutStoriesInput | AuthorUncheckedCreateWithoutStoriesInput No
connectOrCreate AuthorCreateOrConnectWithoutStoriesInput No
upsert AuthorUpsertWithoutStoriesInput No
disconnect Boolean No
delete Boolean No
connect AuthorWhereUniqueInput No
update AuthorUpdateWithoutStoriesInput | AuthorUncheckedUpdateWithoutStoriesInput No

PageUpdateManyWithoutStoryNestedInput

Name Type Nullable
create PageCreateWithoutStoryInput | PageCreateWithoutStoryInput[] | PageUncheckedCreateWithoutStoryInput | PageUncheckedCreateWithoutStoryInput[] No
connectOrCreate PageCreateOrConnectWithoutStoryInput | PageCreateOrConnectWithoutStoryInput[] No
upsert PageUpsertWithWhereUniqueWithoutStoryInput | PageUpsertWithWhereUniqueWithoutStoryInput[] No
createMany PageCreateManyStoryInputEnvelope No
set PageWhereUniqueInput | PageWhereUniqueInput[] No
disconnect PageWhereUniqueInput | PageWhereUniqueInput[] No
delete PageWhereUniqueInput | PageWhereUniqueInput[] No
connect PageWhereUniqueInput | PageWhereUniqueInput[] No
update PageUpdateWithWhereUniqueWithoutStoryInput | PageUpdateWithWhereUniqueWithoutStoryInput[] No
updateMany PageUpdateManyWithWhereWithoutStoryInput | PageUpdateManyWithWhereWithoutStoryInput[] No
deleteMany PageScalarWhereInput | PageScalarWhereInput[] No

PageArtworkUpdateManyWithoutStoryNestedInput

Name Type Nullable
create PageArtworkCreateWithoutStoryInput | PageArtworkCreateWithoutStoryInput[] | PageArtworkUncheckedCreateWithoutStoryInput | PageArtworkUncheckedCreateWithoutStoryInput[] No
connectOrCreate PageArtworkCreateOrConnectWithoutStoryInput | PageArtworkCreateOrConnectWithoutStoryInput[] No
upsert PageArtworkUpsertWithWhereUniqueWithoutStoryInput | PageArtworkUpsertWithWhereUniqueWithoutStoryInput[] No
createMany PageArtworkCreateManyStoryInputEnvelope No
set PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
disconnect PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
delete PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
connect PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
update PageArtworkUpdateWithWhereUniqueWithoutStoryInput | PageArtworkUpdateWithWhereUniqueWithoutStoryInput[] No
updateMany PageArtworkUpdateManyWithWhereWithoutStoryInput | PageArtworkUpdateManyWithWhereWithoutStoryInput[] No
deleteMany PageArtworkScalarWhereInput | PageArtworkScalarWhereInput[] No

PageTextUpdateManyWithoutStoryNestedInput

Name Type Nullable
create PageTextCreateWithoutStoryInput | PageTextCreateWithoutStoryInput[] | PageTextUncheckedCreateWithoutStoryInput | PageTextUncheckedCreateWithoutStoryInput[] No
connectOrCreate PageTextCreateOrConnectWithoutStoryInput | PageTextCreateOrConnectWithoutStoryInput[] No
upsert PageTextUpsertWithWhereUniqueWithoutStoryInput | PageTextUpsertWithWhereUniqueWithoutStoryInput[] No
createMany PageTextCreateManyStoryInputEnvelope No
set PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
disconnect PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
delete PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
connect PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
update PageTextUpdateWithWhereUniqueWithoutStoryInput | PageTextUpdateWithWhereUniqueWithoutStoryInput[] No
updateMany PageTextUpdateManyWithWhereWithoutStoryInput | PageTextUpdateManyWithWhereWithoutStoryInput[] No
deleteMany PageTextScalarWhereInput | PageTextScalarWhereInput[] No

PageUncheckedUpdateManyWithoutStoryNestedInput

Name Type Nullable
create PageCreateWithoutStoryInput | PageCreateWithoutStoryInput[] | PageUncheckedCreateWithoutStoryInput | PageUncheckedCreateWithoutStoryInput[] No
connectOrCreate PageCreateOrConnectWithoutStoryInput | PageCreateOrConnectWithoutStoryInput[] No
upsert PageUpsertWithWhereUniqueWithoutStoryInput | PageUpsertWithWhereUniqueWithoutStoryInput[] No
createMany PageCreateManyStoryInputEnvelope No
set PageWhereUniqueInput | PageWhereUniqueInput[] No
disconnect PageWhereUniqueInput | PageWhereUniqueInput[] No
delete PageWhereUniqueInput | PageWhereUniqueInput[] No
connect PageWhereUniqueInput | PageWhereUniqueInput[] No
update PageUpdateWithWhereUniqueWithoutStoryInput | PageUpdateWithWhereUniqueWithoutStoryInput[] No
updateMany PageUpdateManyWithWhereWithoutStoryInput | PageUpdateManyWithWhereWithoutStoryInput[] No
deleteMany PageScalarWhereInput | PageScalarWhereInput[] No

PageArtworkUncheckedUpdateManyWithoutStoryNestedInput

Name Type Nullable
create PageArtworkCreateWithoutStoryInput | PageArtworkCreateWithoutStoryInput[] | PageArtworkUncheckedCreateWithoutStoryInput | PageArtworkUncheckedCreateWithoutStoryInput[] No
connectOrCreate PageArtworkCreateOrConnectWithoutStoryInput | PageArtworkCreateOrConnectWithoutStoryInput[] No
upsert PageArtworkUpsertWithWhereUniqueWithoutStoryInput | PageArtworkUpsertWithWhereUniqueWithoutStoryInput[] No
createMany PageArtworkCreateManyStoryInputEnvelope No
set PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
disconnect PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
delete PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
connect PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
update PageArtworkUpdateWithWhereUniqueWithoutStoryInput | PageArtworkUpdateWithWhereUniqueWithoutStoryInput[] No
updateMany PageArtworkUpdateManyWithWhereWithoutStoryInput | PageArtworkUpdateManyWithWhereWithoutStoryInput[] No
deleteMany PageArtworkScalarWhereInput | PageArtworkScalarWhereInput[] No

PageTextUncheckedUpdateManyWithoutStoryNestedInput

Name Type Nullable
create PageTextCreateWithoutStoryInput | PageTextCreateWithoutStoryInput[] | PageTextUncheckedCreateWithoutStoryInput | PageTextUncheckedCreateWithoutStoryInput[] No
connectOrCreate PageTextCreateOrConnectWithoutStoryInput | PageTextCreateOrConnectWithoutStoryInput[] No
upsert PageTextUpsertWithWhereUniqueWithoutStoryInput | PageTextUpsertWithWhereUniqueWithoutStoryInput[] No
createMany PageTextCreateManyStoryInputEnvelope No
set PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
disconnect PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
delete PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
connect PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
update PageTextUpdateWithWhereUniqueWithoutStoryInput | PageTextUpdateWithWhereUniqueWithoutStoryInput[] No
updateMany PageTextUpdateManyWithWhereWithoutStoryInput | PageTextUpdateManyWithWhereWithoutStoryInput[] No
deleteMany PageTextScalarWhereInput | PageTextScalarWhereInput[] No

PageCreateNestedOneWithoutArtworksInput

Name Type Nullable
create PageCreateWithoutArtworksInput | PageUncheckedCreateWithoutArtworksInput No
connectOrCreate PageCreateOrConnectWithoutArtworksInput No
connect PageWhereUniqueInput No

StoryCreateNestedOneWithoutPageArtworksInput

Name Type Nullable
create StoryCreateWithoutPageArtworksInput | StoryUncheckedCreateWithoutPageArtworksInput No
connectOrCreate StoryCreateOrConnectWithoutPageArtworksInput No
connect StoryWhereUniqueInput No

ArtistCreateNestedOneWithoutPageArtworksInput

Name Type Nullable
create ArtistCreateWithoutPageArtworksInput | ArtistUncheckedCreateWithoutPageArtworksInput No
connectOrCreate ArtistCreateOrConnectWithoutPageArtworksInput No
connect ArtistWhereUniqueInput No

PhotoCreateNestedOneWithoutPageArtworksInput

Name Type Nullable
create PhotoCreateWithoutPageArtworksInput | PhotoUncheckedCreateWithoutPageArtworksInput No
connectOrCreate PhotoCreateOrConnectWithoutPageArtworksInput No
connect PhotoWhereUniqueInput No

EnumPageStatusFieldUpdateOperationsInput

Name Type Nullable
set PageStatus No





PageCreateNestedOneWithoutTextsInput

Name Type Nullable
create PageCreateWithoutTextsInput | PageUncheckedCreateWithoutTextsInput No
connectOrCreate PageCreateOrConnectWithoutTextsInput No
connect PageWhereUniqueInput No

StoryCreateNestedOneWithoutPageTextsInput

Name Type Nullable
create StoryCreateWithoutPageTextsInput | StoryUncheckedCreateWithoutPageTextsInput No
connectOrCreate StoryCreateOrConnectWithoutPageTextsInput No
connect StoryWhereUniqueInput No

AuthorCreateNestedOneWithoutPageTextsInput

Name Type Nullable
create AuthorCreateWithoutPageTextsInput | AuthorUncheckedCreateWithoutPageTextsInput No
connectOrCreate AuthorCreateOrConnectWithoutPageTextsInput No
connect AuthorWhereUniqueInput No

TranslatorCreateNestedOneWithoutPageTextsInput

Name Type Nullable
create TranslatorCreateWithoutPageTextsInput | TranslatorUncheckedCreateWithoutPageTextsInput No
connectOrCreate TranslatorCreateOrConnectWithoutPageTextsInput No
connect TranslatorWhereUniqueInput No

EnumLocaleFieldUpdateOperationsInput

Name Type Nullable
set Locale No

EnumPageTextTypeFieldUpdateOperationsInput

Name Type Nullable
set PageTextType No



AuthorUpdateOneWithoutPageTextsNestedInput

Name Type Nullable
create AuthorCreateWithoutPageTextsInput | AuthorUncheckedCreateWithoutPageTextsInput No
connectOrCreate AuthorCreateOrConnectWithoutPageTextsInput No
upsert AuthorUpsertWithoutPageTextsInput No
disconnect Boolean No
delete Boolean No
connect AuthorWhereUniqueInput No
update AuthorUpdateWithoutPageTextsInput | AuthorUncheckedUpdateWithoutPageTextsInput No


StoryCreateNestedOneWithoutPagesInput

Name Type Nullable
create StoryCreateWithoutPagesInput | StoryUncheckedCreateWithoutPagesInput No
connectOrCreate StoryCreateOrConnectWithoutPagesInput No
connect StoryWhereUniqueInput No





EnumPageTypeFieldUpdateOperationsInput

Name Type Nullable
set PageType No


PageArtworkUpdateManyWithoutPageNestedInput

Name Type Nullable
create PageArtworkCreateWithoutPageInput | PageArtworkCreateWithoutPageInput[] | PageArtworkUncheckedCreateWithoutPageInput | PageArtworkUncheckedCreateWithoutPageInput[] No
connectOrCreate PageArtworkCreateOrConnectWithoutPageInput | PageArtworkCreateOrConnectWithoutPageInput[] No
upsert PageArtworkUpsertWithWhereUniqueWithoutPageInput | PageArtworkUpsertWithWhereUniqueWithoutPageInput[] No
createMany PageArtworkCreateManyPageInputEnvelope No
set PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
disconnect PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
delete PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
connect PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
update PageArtworkUpdateWithWhereUniqueWithoutPageInput | PageArtworkUpdateWithWhereUniqueWithoutPageInput[] No
updateMany PageArtworkUpdateManyWithWhereWithoutPageInput | PageArtworkUpdateManyWithWhereWithoutPageInput[] No
deleteMany PageArtworkScalarWhereInput | PageArtworkScalarWhereInput[] No

PageTextUpdateManyWithoutPageNestedInput

Name Type Nullable
create PageTextCreateWithoutPageInput | PageTextCreateWithoutPageInput[] | PageTextUncheckedCreateWithoutPageInput | PageTextUncheckedCreateWithoutPageInput[] No
connectOrCreate PageTextCreateOrConnectWithoutPageInput | PageTextCreateOrConnectWithoutPageInput[] No
upsert PageTextUpsertWithWhereUniqueWithoutPageInput | PageTextUpsertWithWhereUniqueWithoutPageInput[] No
createMany PageTextCreateManyPageInputEnvelope No
set PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
disconnect PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
delete PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
connect PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
update PageTextUpdateWithWhereUniqueWithoutPageInput | PageTextUpdateWithWhereUniqueWithoutPageInput[] No
updateMany PageTextUpdateManyWithWhereWithoutPageInput | PageTextUpdateManyWithWhereWithoutPageInput[] No
deleteMany PageTextScalarWhereInput | PageTextScalarWhereInput[] No

PageArtworkUncheckedUpdateManyWithoutPageNestedInput

Name Type Nullable
create PageArtworkCreateWithoutPageInput | PageArtworkCreateWithoutPageInput[] | PageArtworkUncheckedCreateWithoutPageInput | PageArtworkUncheckedCreateWithoutPageInput[] No
connectOrCreate PageArtworkCreateOrConnectWithoutPageInput | PageArtworkCreateOrConnectWithoutPageInput[] No
upsert PageArtworkUpsertWithWhereUniqueWithoutPageInput | PageArtworkUpsertWithWhereUniqueWithoutPageInput[] No
createMany PageArtworkCreateManyPageInputEnvelope No
set PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
disconnect PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
delete PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
connect PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] No
update PageArtworkUpdateWithWhereUniqueWithoutPageInput | PageArtworkUpdateWithWhereUniqueWithoutPageInput[] No
updateMany PageArtworkUpdateManyWithWhereWithoutPageInput | PageArtworkUpdateManyWithWhereWithoutPageInput[] No
deleteMany PageArtworkScalarWhereInput | PageArtworkScalarWhereInput[] No

PageTextUncheckedUpdateManyWithoutPageNestedInput

Name Type Nullable
create PageTextCreateWithoutPageInput | PageTextCreateWithoutPageInput[] | PageTextUncheckedCreateWithoutPageInput | PageTextUncheckedCreateWithoutPageInput[] No
connectOrCreate PageTextCreateOrConnectWithoutPageInput | PageTextCreateOrConnectWithoutPageInput[] No
upsert PageTextUpsertWithWhereUniqueWithoutPageInput | PageTextUpsertWithWhereUniqueWithoutPageInput[] No
createMany PageTextCreateManyPageInputEnvelope No
set PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
disconnect PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
delete PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
connect PageTextWhereUniqueInput | PageTextWhereUniqueInput[] No
update PageTextUpdateWithWhereUniqueWithoutPageInput | PageTextUpdateWithWhereUniqueWithoutPageInput[] No
updateMany PageTextUpdateManyWithWhereWithoutPageInput | PageTextUpdateManyWithWhereWithoutPageInput[] No
deleteMany PageTextScalarWhereInput | PageTextScalarWhereInput[] No

NestedStringFilter

Name Type Nullable
equals String No
in String | String No
notIn String | String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringFilter No

NestedDateTimeFilter

Name Type Nullable
equals DateTime No
in DateTime | DateTime No
notIn DateTime | DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeFilter No

NestedDateTimeNullableFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | DateTime | Null Yes
notIn DateTime | DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableFilter | Null Yes

NestedBoolFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolFilter No

NestedStringNullableFilter

Name Type Nullable
equals String | Null Yes
in String | String | Null Yes
notIn String | String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringNullableFilter | Null Yes

NestedStringWithAggregatesFilter

Name Type Nullable
equals String No
in String | String No
notIn String | String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

NestedIntFilter

Name Type Nullable
equals Int No
in Int | Int No
notIn Int | Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntFilter No

NestedDateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime No
in DateTime | DateTime No
notIn DateTime | DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

NestedDateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | DateTime | Null Yes
notIn DateTime | DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

NestedIntNullableFilter

Name Type Nullable
equals Int | Null Yes
in Int | Int | Null Yes
notIn Int | Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableFilter | Null Yes

NestedBoolWithAggregatesFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

NestedStringNullableWithAggregatesFilter

Name Type Nullable
equals String | Null Yes
in String | String | Null Yes
notIn String | String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

NestedEnumConceptTypeFilter

Name Type Nullable
equals ConceptType No
in ConceptType[] | ConceptType No
notIn ConceptType[] | ConceptType No
not ConceptType | NestedEnumConceptTypeFilter No

NestedEnumConceptStatusFilter

Name Type Nullable
equals ConceptStatus No
in ConceptStatus[] | ConceptStatus No
notIn ConceptStatus[] | ConceptStatus No
not ConceptStatus | NestedEnumConceptStatusFilter No

NestedEnumConceptTypeWithAggregatesFilter

Name Type Nullable
equals ConceptType No
in ConceptType[] | ConceptType No
notIn ConceptType[] | ConceptType No
not ConceptType | NestedEnumConceptTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumConceptTypeFilter No
_max NestedEnumConceptTypeFilter No

NestedEnumConceptStatusWithAggregatesFilter

Name Type Nullable
equals ConceptStatus No
in ConceptStatus[] | ConceptStatus No
notIn ConceptStatus[] | ConceptStatus No
not ConceptStatus | NestedEnumConceptStatusWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumConceptStatusFilter No
_max NestedEnumConceptStatusFilter No

NestedJsonNullableFilter

Name Type Nullable
equals Json | JsonNullValueFilter No
path String No
string_contains String No
string_starts_with String No
string_ends_with String No
array_contains Json | Null Yes
array_starts_with Json | Null Yes
array_ends_with Json | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonNullValueFilter No

NestedFloatFilter

Name Type Nullable
equals Float No
in Float | Float No
notIn Float | Float No
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatFilter No

NestedEnumLRSchedulerFilter

Name Type Nullable
equals LRScheduler No
in LRScheduler[] | LRScheduler No
notIn LRScheduler[] | LRScheduler No
not LRScheduler | NestedEnumLRSchedulerFilter No

NestedIntWithAggregatesFilter

Name Type Nullable
equals Int No
in Int | Int No
notIn Int | Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

NestedFloatWithAggregatesFilter

Name Type Nullable
equals Float No
in Float | Float No
notIn Float | Float No
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedFloatFilter No
_min NestedFloatFilter No
_max NestedFloatFilter No

NestedEnumLRSchedulerWithAggregatesFilter

Name Type Nullable
equals LRScheduler No
in LRScheduler[] | LRScheduler No
notIn LRScheduler[] | LRScheduler No
not LRScheduler | NestedEnumLRSchedulerWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumLRSchedulerFilter No
_max NestedEnumLRSchedulerFilter No

NestedEnumFileResourceTypeFilter

Name Type Nullable
equals FileResourceType No
in FileResourceType[] | FileResourceType No
notIn FileResourceType[] | FileResourceType No
not FileResourceType | NestedEnumFileResourceTypeFilter No

NestedEnumCloudFileRegionFilter

Name Type Nullable
equals CloudFileRegion No
in CloudFileRegion[] | CloudFileRegion No
notIn CloudFileRegion[] | CloudFileRegion No
not CloudFileRegion | NestedEnumCloudFileRegionFilter No

NestedEnumFilePrivacyFilter

Name Type Nullable
equals FilePrivacy No
in FilePrivacy[] | FilePrivacy No
notIn FilePrivacy[] | FilePrivacy No
not FilePrivacy | NestedEnumFilePrivacyFilter No


NestedJsonFilter

Name Type Nullable
equals Json | JsonNullValueFilter No
path String No
string_contains String No
string_starts_with String No
string_ends_with String No
array_contains Json | Null Yes
array_starts_with Json | Null Yes
array_ends_with Json | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonNullValueFilter No


NestedEnumFilePrivacyWithAggregatesFilter

Name Type Nullable
equals FilePrivacy No
in FilePrivacy[] | FilePrivacy No
notIn FilePrivacy[] | FilePrivacy No
not FilePrivacy | NestedEnumFilePrivacyWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumFilePrivacyFilter No
_max NestedEnumFilePrivacyFilter No

NestedEnumPageStatusFilter

Name Type Nullable
equals PageStatus No
in PageStatus[] | PageStatus No
notIn PageStatus[] | PageStatus No
not PageStatus | NestedEnumPageStatusFilter No

NestedEnumPageStatusWithAggregatesFilter

Name Type Nullable
equals PageStatus No
in PageStatus[] | PageStatus No
notIn PageStatus[] | PageStatus No
not PageStatus | NestedEnumPageStatusWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumPageStatusFilter No
_max NestedEnumPageStatusFilter No

NestedEnumLocaleFilter

Name Type Nullable
equals Locale No
in Locale[] | Locale No
notIn Locale[] | Locale No
not Locale | NestedEnumLocaleFilter No

NestedEnumPageTextTypeFilter

Name Type Nullable
equals PageTextType No
in PageTextType[] | PageTextType No
notIn PageTextType[] | PageTextType No
not PageTextType | NestedEnumPageTextTypeFilter No

NestedEnumLocaleWithAggregatesFilter

Name Type Nullable
equals Locale No
in Locale[] | Locale No
notIn Locale[] | Locale No
not Locale | NestedEnumLocaleWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumLocaleFilter No
_max NestedEnumLocaleFilter No

NestedEnumPageTextTypeWithAggregatesFilter

Name Type Nullable
equals PageTextType No
in PageTextType[] | PageTextType No
notIn PageTextType[] | PageTextType No
not PageTextType | NestedEnumPageTextTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumPageTextTypeFilter No
_max NestedEnumPageTextTypeFilter No

NestedEnumPageTypeFilter

Name Type Nullable
equals PageType No
in PageType[] | PageType No
notIn PageType[] | PageType No
not PageType | NestedEnumPageTypeFilter No

NestedEnumPageTypeWithAggregatesFilter

Name Type Nullable
equals PageType No
in PageType[] | PageType No
notIn PageType[] | PageType No
not PageType | NestedEnumPageTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumPageTypeFilter No
_max NestedEnumPageTypeFilter No

ArtistCreateWithoutUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
stories StoryCreateNestedManyWithoutArtistInput No
pageArtworks PageArtworkCreateNestedManyWithoutArtistInput No

ArtistUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
stories StoryUncheckedCreateNestedManyWithoutArtistInput No
pageArtworks PageArtworkUncheckedCreateNestedManyWithoutArtistInput No

ArtistCreateOrConnectWithoutUserInput

Name Type Nullable
where ArtistWhereUniqueInput No
create ArtistCreateWithoutUserInput | ArtistUncheckedCreateWithoutUserInput No

AuthorCreateWithoutUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
stories StoryCreateNestedManyWithoutAuthorInput No
pageTexts PageTextCreateNestedManyWithoutAuthorInput No

AuthorUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
stories StoryUncheckedCreateNestedManyWithoutAuthorInput No
pageTexts PageTextUncheckedCreateNestedManyWithoutAuthorInput No

AuthorCreateOrConnectWithoutUserInput

Name Type Nullable
where AuthorWhereUniqueInput No
create AuthorCreateWithoutUserInput | AuthorUncheckedCreateWithoutUserInput No

EditionCreateWithoutUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pdf PDFCreateNestedOneWithoutEditionInput No

EditionUncheckedCreateWithoutUserInput

Name Type Nullable
pdfId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

EditionCreateOrConnectWithoutUserInput

Name Type Nullable
where EditionWhereUniqueInput No
create EditionCreateWithoutUserInput | EditionUncheckedCreateWithoutUserInput No

EditionCreateManyUserInputEnvelope

Name Type Nullable
data EditionCreateManyUserInput | EditionCreateManyUserInput[] No
skipDuplicates Boolean No


ArtistUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
stories StoryUpdateManyWithoutArtistNestedInput No
pageArtworks PageArtworkUpdateManyWithoutArtistNestedInput No

ArtistUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
stories StoryUncheckedUpdateManyWithoutArtistNestedInput No
pageArtworks PageArtworkUncheckedUpdateManyWithoutArtistNestedInput No


AuthorUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
stories StoryUpdateManyWithoutAuthorNestedInput No
pageTexts PageTextUpdateManyWithoutAuthorNestedInput No

AuthorUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
stories StoryUncheckedUpdateManyWithoutAuthorNestedInput No
pageTexts PageTextUncheckedUpdateManyWithoutAuthorNestedInput No


EditionUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where EditionWhereUniqueInput No
data EditionUpdateWithoutUserInput | EditionUncheckedUpdateWithoutUserInput No

EditionUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where EditionScalarWhereInput No
data EditionUpdateManyMutationInput | EditionUncheckedUpdateManyWithoutEditionsInput No

EditionScalarWhereInput

Name Type Nullable
AND EditionScalarWhereInput | EditionScalarWhereInput[] No
OR EditionScalarWhereInput[] No
NOT EditionScalarWhereInput | EditionScalarWhereInput[] No
userId StringFilter | String No
pdfId StringFilter | String No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes

StoryCreateWithoutAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
artist ArtistCreateNestedOneWithoutStoriesInput No
pages PageCreateNestedManyWithoutStoryInput No
pageArtworks PageArtworkCreateNestedManyWithoutStoryInput No
pageTexts PageTextCreateNestedManyWithoutStoryInput No

StoryUncheckedCreateWithoutAuthorInput

Name Type Nullable
artistId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pages PageUncheckedCreateNestedManyWithoutStoryInput No
pageArtworks PageArtworkUncheckedCreateNestedManyWithoutStoryInput No
pageTexts PageTextUncheckedCreateNestedManyWithoutStoryInput No

StoryCreateOrConnectWithoutAuthorInput

Name Type Nullable
where StoryWhereUniqueInput No
create StoryCreateWithoutAuthorInput | StoryUncheckedCreateWithoutAuthorInput No

StoryCreateManyAuthorInputEnvelope

Name Type Nullable
data StoryCreateManyAuthorInput | StoryCreateManyAuthorInput[] No
skipDuplicates Boolean No

PageTextCreateWithoutAuthorInput

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
page PageCreateNestedOneWithoutTextsInput No
story StoryCreateNestedOneWithoutPageTextsInput No
translator TranslatorCreateNestedOneWithoutPageTextsInput No

PageTextUncheckedCreateWithoutAuthorInput

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
pageId String No
storyId String No
translatorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageTextCreateOrConnectWithoutAuthorInput

Name Type Nullable
where PageTextWhereUniqueInput No
create PageTextCreateWithoutAuthorInput | PageTextUncheckedCreateWithoutAuthorInput No

PageTextCreateManyAuthorInputEnvelope

Name Type Nullable
data PageTextCreateManyAuthorInput | PageTextCreateManyAuthorInput[] No
skipDuplicates Boolean No

UserCreateWithoutAuthorInput

Name Type Nullable
name String No
email String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
artist ArtistCreateNestedOneWithoutUserInput No
editions EditionCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutAuthorInput

Name Type Nullable
name String No
email String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
artist ArtistUncheckedCreateNestedOneWithoutUserInput No
editions EditionUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutAuthorInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutAuthorInput | UserUncheckedCreateWithoutAuthorInput No


StoryUpdateWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where StoryWhereUniqueInput No
data StoryUpdateWithoutAuthorInput | StoryUncheckedUpdateWithoutAuthorInput No

StoryUpdateManyWithWhereWithoutAuthorInput

Name Type Nullable
where StoryScalarWhereInput No
data StoryUpdateManyMutationInput | StoryUncheckedUpdateManyWithoutStoriesInput No

StoryScalarWhereInput

Name Type Nullable
AND StoryScalarWhereInput | StoryScalarWhereInput[] No
OR StoryScalarWhereInput[] No
NOT StoryScalarWhereInput | StoryScalarWhereInput[] No
artistId StringNullableFilter | String | Null Yes
authorId StringNullableFilter | String | Null Yes
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes


PageTextUpdateWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where PageTextWhereUniqueInput No
data PageTextUpdateWithoutAuthorInput | PageTextUncheckedUpdateWithoutAuthorInput No

PageTextUpdateManyWithWhereWithoutAuthorInput

Name Type Nullable
where PageTextScalarWhereInput No
data PageTextUpdateManyMutationInput | PageTextUncheckedUpdateManyWithoutPageTextsInput No

PageTextScalarWhereInput

Name Type Nullable
AND PageTextScalarWhereInput | PageTextScalarWhereInput[] No
OR PageTextScalarWhereInput[] No
NOT PageTextScalarWhereInput | PageTextScalarWhereInput[] No
status EnumPageStatusFilter | PageStatus No
locale EnumLocaleFilter | Locale No
text StringFilter | String No
type EnumPageTextTypeFilter | PageTextType No
pageId StringFilter | String No
storyId StringFilter | String No
authorId StringNullableFilter | String | Null Yes
translatorId StringNullableFilter | String | Null Yes
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes


UserUpdateWithoutAuthorInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
artist ArtistUpdateOneWithoutUserNestedInput No
editions EditionUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutAuthorInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
artist ArtistUncheckedUpdateOneWithoutUserNestedInput No
editions EditionUncheckedUpdateManyWithoutUserNestedInput No

StoryCreateWithoutArtistInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
author AuthorCreateNestedOneWithoutStoriesInput No
pages PageCreateNestedManyWithoutStoryInput No
pageArtworks PageArtworkCreateNestedManyWithoutStoryInput No
pageTexts PageTextCreateNestedManyWithoutStoryInput No

StoryUncheckedCreateWithoutArtistInput

Name Type Nullable
authorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pages PageUncheckedCreateNestedManyWithoutStoryInput No
pageArtworks PageArtworkUncheckedCreateNestedManyWithoutStoryInput No
pageTexts PageTextUncheckedCreateNestedManyWithoutStoryInput No

StoryCreateOrConnectWithoutArtistInput

Name Type Nullable
where StoryWhereUniqueInput No
create StoryCreateWithoutArtistInput | StoryUncheckedCreateWithoutArtistInput No

StoryCreateManyArtistInputEnvelope

Name Type Nullable
data StoryCreateManyArtistInput | StoryCreateManyArtistInput[] No
skipDuplicates Boolean No

PageArtworkCreateWithoutArtistInput

Name Type Nullable
status PageStatus No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
page PageCreateNestedOneWithoutArtworksInput No
story StoryCreateNestedOneWithoutPageArtworksInput No
photo PhotoCreateNestedOneWithoutPageArtworksInput No

PageArtworkUncheckedCreateWithoutArtistInput

Name Type Nullable
status PageStatus No
pageId String No
storyId String No
photoId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageArtworkCreateOrConnectWithoutArtistInput

Name Type Nullable
where PageArtworkWhereUniqueInput No
create PageArtworkCreateWithoutArtistInput | PageArtworkUncheckedCreateWithoutArtistInput No

PageArtworkCreateManyArtistInputEnvelope

Name Type Nullable
data PageArtworkCreateManyArtistInput | PageArtworkCreateManyArtistInput[] No
skipDuplicates Boolean No

UserCreateWithoutArtistInput

Name Type Nullable
name String No
email String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
author AuthorCreateNestedOneWithoutUserInput No
editions EditionCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutArtistInput

Name Type Nullable
name String No
email String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
author AuthorUncheckedCreateNestedOneWithoutUserInput No
editions EditionUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutArtistInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutArtistInput | UserUncheckedCreateWithoutArtistInput No


StoryUpdateWithWhereUniqueWithoutArtistInput

Name Type Nullable
where StoryWhereUniqueInput No
data StoryUpdateWithoutArtistInput | StoryUncheckedUpdateWithoutArtistInput No

StoryUpdateManyWithWhereWithoutArtistInput

Name Type Nullable
where StoryScalarWhereInput No
data StoryUpdateManyMutationInput | StoryUncheckedUpdateManyWithoutStoriesInput No


PageArtworkUpdateWithWhereUniqueWithoutArtistInput

Name Type Nullable
where PageArtworkWhereUniqueInput No
data PageArtworkUpdateWithoutArtistInput | PageArtworkUncheckedUpdateWithoutArtistInput No

PageArtworkUpdateManyWithWhereWithoutArtistInput

Name Type Nullable
where PageArtworkScalarWhereInput No
data PageArtworkUpdateManyMutationInput | PageArtworkUncheckedUpdateManyWithoutPageArtworksInput No

PageArtworkScalarWhereInput

Name Type Nullable
AND PageArtworkScalarWhereInput | PageArtworkScalarWhereInput[] No
OR PageArtworkScalarWhereInput[] No
NOT PageArtworkScalarWhereInput | PageArtworkScalarWhereInput[] No
status EnumPageStatusFilter | PageStatus No
pageId StringFilter | String No
storyId StringFilter | String No
artistId StringFilter | String No
photoId StringFilter | String No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes


UserUpdateWithoutArtistInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
author AuthorUpdateOneWithoutUserNestedInput No
editions EditionUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutArtistInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
author AuthorUncheckedUpdateOneWithoutUserNestedInput No
editions EditionUncheckedUpdateManyWithoutUserNestedInput No

PageTextCreateWithoutTranslatorInput

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
page PageCreateNestedOneWithoutTextsInput No
story StoryCreateNestedOneWithoutPageTextsInput No
author AuthorCreateNestedOneWithoutPageTextsInput No

PageTextUncheckedCreateWithoutTranslatorInput

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
pageId String No
storyId String No
authorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageTextCreateOrConnectWithoutTranslatorInput

Name Type Nullable
where PageTextWhereUniqueInput No
create PageTextCreateWithoutTranslatorInput | PageTextUncheckedCreateWithoutTranslatorInput No

PageTextCreateManyTranslatorInputEnvelope

Name Type Nullable
data PageTextCreateManyTranslatorInput | PageTextCreateManyTranslatorInput[] No
skipDuplicates Boolean No


PageTextUpdateWithWhereUniqueWithoutTranslatorInput

Name Type Nullable
where PageTextWhereUniqueInput No
data PageTextUpdateWithoutTranslatorInput | PageTextUncheckedUpdateWithoutTranslatorInput No

PageTextUpdateManyWithWhereWithoutTranslatorInput

Name Type Nullable
where PageTextScalarWhereInput No
data PageTextUpdateManyMutationInput | PageTextUncheckedUpdateManyWithoutPageTextsInput No

DreamBoothTrainingCreateWithoutConceptInput

Name Type Nullable
id String No
createdAt DateTime No
instance_prompt String No
class_prompt String No
instance_data String No
class_data String No
num_class_images Int No
save_sample_prompt String | Null Yes
save_sample_negative_prompt String | Null Yes
n_save_sample Int No
save_guidance_scale Float No
save_infer_steps Int No
pad_tokens Boolean No
with_prior_preservation Boolean No
prior_loss_weight Float No
seed Int No
resolution Int No
center_crop Boolean No
train_text_encoder Boolean No
train_batch_size Int No
sample_batch_size Int No
num_train_epochs Int No
max_train_steps Int No
gradient_accumulation_steps Int No
gradient_checkpointing Boolean No
learning_rate Float No
scale_lr Boolean No
lr_scheduler LRScheduler No
lr_warmup_steps Int No
use_8bit_adam Boolean No
adam_beta1 Float No
adam_beta2 Float No
adam_weight_decay Float No
adam_epsilon Float No
max_grad_norm Float No
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

DreamBoothTrainingUncheckedCreateWithoutConceptInput

Name Type Nullable
id String No
createdAt DateTime No
instance_prompt String No
class_prompt String No
instance_data String No
class_data String No
num_class_images Int No
save_sample_prompt String | Null Yes
save_sample_negative_prompt String | Null Yes
n_save_sample Int No
save_guidance_scale Float No
save_infer_steps Int No
pad_tokens Boolean No
with_prior_preservation Boolean No
prior_loss_weight Float No
seed Int No
resolution Int No
center_crop Boolean No
train_text_encoder Boolean No
train_batch_size Int No
sample_batch_size Int No
num_train_epochs Int No
max_train_steps Int No
gradient_accumulation_steps Int No
gradient_checkpointing Boolean No
learning_rate Float No
scale_lr Boolean No
lr_scheduler LRScheduler No
lr_warmup_steps Int No
use_8bit_adam Boolean No
adam_beta1 Float No
adam_beta2 Float No
adam_weight_decay Float No
adam_epsilon Float No
max_grad_norm Float No
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

DreamBoothTrainingCreateOrConnectWithoutConceptInput

Name Type Nullable
where DreamBoothTrainingWhereUniqueInput No
create DreamBoothTrainingCreateWithoutConceptInput | DreamBoothTrainingUncheckedCreateWithoutConceptInput No

PhotoCreateWithoutConceptsInput

Name Type Nullable
height Int No
width Int No
tags PhotoCreatetagsInput | String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
file CloudFileCreateNestedOneWithoutPhotoInput No
pageArtworks PageArtworkCreateNestedManyWithoutPhotoInput No

PhotoUncheckedCreateWithoutConceptsInput

Name Type Nullable
height Int No
width Int No
tags PhotoCreatetagsInput | String No
fileId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pageArtworks PageArtworkUncheckedCreateNestedManyWithoutPhotoInput No

PhotoCreateOrConnectWithoutConceptsInput

Name Type Nullable
where PhotoWhereUniqueInput No
create PhotoCreateWithoutConceptsInput | PhotoUncheckedCreateWithoutConceptsInput No


DreamBoothTrainingUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
instance_prompt String | StringFieldUpdateOperationsInput No
class_prompt String | StringFieldUpdateOperationsInput No
instance_data String | StringFieldUpdateOperationsInput No
class_data String | StringFieldUpdateOperationsInput No
num_class_images Int | IntFieldUpdateOperationsInput No
save_sample_prompt String | NullableStringFieldUpdateOperationsInput | Null Yes
save_sample_negative_prompt String | NullableStringFieldUpdateOperationsInput | Null Yes
n_save_sample Int | IntFieldUpdateOperationsInput No
save_guidance_scale Float | FloatFieldUpdateOperationsInput No
save_infer_steps Int | IntFieldUpdateOperationsInput No
pad_tokens Boolean | BoolFieldUpdateOperationsInput No
with_prior_preservation Boolean | BoolFieldUpdateOperationsInput No
prior_loss_weight Float | FloatFieldUpdateOperationsInput No
seed Int | IntFieldUpdateOperationsInput No
resolution Int | IntFieldUpdateOperationsInput No
center_crop Boolean | BoolFieldUpdateOperationsInput No
train_text_encoder Boolean | BoolFieldUpdateOperationsInput No
train_batch_size Int | IntFieldUpdateOperationsInput No
sample_batch_size Int | IntFieldUpdateOperationsInput No
num_train_epochs Int | IntFieldUpdateOperationsInput No
max_train_steps Int | IntFieldUpdateOperationsInput No
gradient_accumulation_steps Int | IntFieldUpdateOperationsInput No
gradient_checkpointing Boolean | BoolFieldUpdateOperationsInput No
learning_rate Float | FloatFieldUpdateOperationsInput No
scale_lr Boolean | BoolFieldUpdateOperationsInput No
lr_scheduler LRScheduler | EnumLRSchedulerFieldUpdateOperationsInput No
lr_warmup_steps Int | IntFieldUpdateOperationsInput No
use_8bit_adam Boolean | BoolFieldUpdateOperationsInput No
adam_beta1 Float | FloatFieldUpdateOperationsInput No
adam_beta2 Float | FloatFieldUpdateOperationsInput No
adam_weight_decay Float | FloatFieldUpdateOperationsInput No
adam_epsilon Float | FloatFieldUpdateOperationsInput No
max_grad_norm Float | FloatFieldUpdateOperationsInput No
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

DreamBoothTrainingUncheckedUpdateWithoutConceptInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
instance_prompt String | StringFieldUpdateOperationsInput No
class_prompt String | StringFieldUpdateOperationsInput No
instance_data String | StringFieldUpdateOperationsInput No
class_data String | StringFieldUpdateOperationsInput No
num_class_images Int | IntFieldUpdateOperationsInput No
save_sample_prompt String | NullableStringFieldUpdateOperationsInput | Null Yes
save_sample_negative_prompt String | NullableStringFieldUpdateOperationsInput | Null Yes
n_save_sample Int | IntFieldUpdateOperationsInput No
save_guidance_scale Float | FloatFieldUpdateOperationsInput No
save_infer_steps Int | IntFieldUpdateOperationsInput No
pad_tokens Boolean | BoolFieldUpdateOperationsInput No
with_prior_preservation Boolean | BoolFieldUpdateOperationsInput No
prior_loss_weight Float | FloatFieldUpdateOperationsInput No
seed Int | IntFieldUpdateOperationsInput No
resolution Int | IntFieldUpdateOperationsInput No
center_crop Boolean | BoolFieldUpdateOperationsInput No
train_text_encoder Boolean | BoolFieldUpdateOperationsInput No
train_batch_size Int | IntFieldUpdateOperationsInput No
sample_batch_size Int | IntFieldUpdateOperationsInput No
num_train_epochs Int | IntFieldUpdateOperationsInput No
max_train_steps Int | IntFieldUpdateOperationsInput No
gradient_accumulation_steps Int | IntFieldUpdateOperationsInput No
gradient_checkpointing Boolean | BoolFieldUpdateOperationsInput No
learning_rate Float | FloatFieldUpdateOperationsInput No
scale_lr Boolean | BoolFieldUpdateOperationsInput No
lr_scheduler LRScheduler | EnumLRSchedulerFieldUpdateOperationsInput No
lr_warmup_steps Int | IntFieldUpdateOperationsInput No
use_8bit_adam Boolean | BoolFieldUpdateOperationsInput No
adam_beta1 Float | FloatFieldUpdateOperationsInput No
adam_beta2 Float | FloatFieldUpdateOperationsInput No
adam_weight_decay Float | FloatFieldUpdateOperationsInput No
adam_epsilon Float | FloatFieldUpdateOperationsInput No
max_grad_norm Float | FloatFieldUpdateOperationsInput No
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes


PhotoUpdateWithWhereUniqueWithoutConceptsInput

Name Type Nullable
where PhotoWhereUniqueInput No
data PhotoUpdateWithoutConceptsInput | PhotoUncheckedUpdateWithoutConceptsInput No

PhotoUpdateManyWithWhereWithoutConceptsInput

Name Type Nullable
where PhotoScalarWhereInput No
data PhotoUpdateManyMutationInput | PhotoUncheckedUpdateManyWithoutPhotosInput No

PhotoScalarWhereInput

Name Type Nullable
AND PhotoScalarWhereInput | PhotoScalarWhereInput[] No
OR PhotoScalarWhereInput[] No
NOT PhotoScalarWhereInput | PhotoScalarWhereInput[] No
height IntFilter | Int No
width IntFilter | Int No
tags StringNullableListFilter No
fileId StringFilter | String No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes

ConceptCreateWithoutDreamboothTrainingInput

Name Type Nullable
name String No
type ConceptType No
status ConceptStatus No
description String | Null Yes
prompt String No
identifier String No
classNoun String No
negativePrompt String No
instancePrompt String No
classPrompt String No
positivePrompts ConceptCreatepositivePromptsInput | String No
negativePrompts ConceptCreatenegativePromptsInput | String No
dreamboothModelURI String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
photos PhotoCreateNestedManyWithoutConceptsInput No

ConceptUncheckedCreateWithoutDreamboothTrainingInput

Name Type Nullable
name String No
type ConceptType No
status ConceptStatus No
description String | Null Yes
prompt String No
identifier String No
classNoun String No
negativePrompt String No
instancePrompt String No
classPrompt String No
positivePrompts ConceptCreatepositivePromptsInput | String No
negativePrompts ConceptCreatenegativePromptsInput | String No
dreamboothModelURI String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
photos PhotoUncheckedCreateNestedManyWithoutConceptsInput No

ConceptCreateOrConnectWithoutDreamboothTrainingInput

Name Type Nullable
where ConceptWhereUniqueInput No
create ConceptCreateWithoutDreamboothTrainingInput | ConceptUncheckedCreateWithoutDreamboothTrainingInput No

ConceptCreateManyDreamboothTrainingInputEnvelope

Name Type Nullable
data ConceptCreateManyDreamboothTrainingInput | ConceptCreateManyDreamboothTrainingInput[] No
skipDuplicates Boolean No


ConceptUpdateWithWhereUniqueWithoutDreamboothTrainingInput

Name Type Nullable
where ConceptWhereUniqueInput No
data ConceptUpdateWithoutDreamboothTrainingInput | ConceptUncheckedUpdateWithoutDreamboothTrainingInput No

ConceptUpdateManyWithWhereWithoutDreamboothTrainingInput

Name Type Nullable
where ConceptScalarWhereInput No
data ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyWithoutConceptInput No

ConceptScalarWhereInput

Name Type Nullable
AND ConceptScalarWhereInput | ConceptScalarWhereInput[] No
OR ConceptScalarWhereInput[] No
NOT ConceptScalarWhereInput | ConceptScalarWhereInput[] No
name StringFilter | String No
type EnumConceptTypeFilter | ConceptType No
status EnumConceptStatusFilter | ConceptStatus No
description StringNullableFilter | String | Null Yes
prompt StringFilter | String No
identifier StringFilter | String No
classNoun StringFilter | String No
negativePrompt StringFilter | String No
instancePrompt StringFilter | String No
classPrompt StringFilter | String No
positivePrompts StringNullableListFilter No
negativePrompts StringNullableListFilter No
dreamboothTrainingId StringNullableFilter | String | Null Yes
dreamboothModelURI StringNullableFilter | String | Null Yes
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes

UserCreateWithoutEditionsInput

Name Type Nullable
name String No
email String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
artist ArtistCreateNestedOneWithoutUserInput No
author AuthorCreateNestedOneWithoutUserInput No

UserUncheckedCreateWithoutEditionsInput

Name Type Nullable
name String No
email String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
artist ArtistUncheckedCreateNestedOneWithoutUserInput No
author AuthorUncheckedCreateNestedOneWithoutUserInput No

UserCreateOrConnectWithoutEditionsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutEditionsInput | UserUncheckedCreateWithoutEditionsInput No

PDFCreateWithoutEditionInput

Name Type Nullable
height Int No
width Int No
pages Int No
tags PDFCreatetagsInput | String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
file CloudFileCreateNestedOneWithoutPdfInput No

PDFUncheckedCreateWithoutEditionInput

Name Type Nullable
height Int No
width Int No
pages Int No
tags PDFCreatetagsInput | String No
fileId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PDFCreateOrConnectWithoutEditionInput

Name Type Nullable
where PDFWhereUniqueInput No
create PDFCreateWithoutEditionInput | PDFUncheckedCreateWithoutEditionInput No


UserUpdateWithoutEditionsInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
artist ArtistUpdateOneWithoutUserNestedInput No
author AuthorUpdateOneWithoutUserNestedInput No

UserUncheckedUpdateWithoutEditionsInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
artist ArtistUncheckedUpdateOneWithoutUserNestedInput No
author AuthorUncheckedUpdateOneWithoutUserNestedInput No


PDFUpdateWithoutEditionInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
pages Int | IntFieldUpdateOperationsInput No
tags PDFUpdatetagsInput | String No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
file CloudFileUpdateOneRequiredWithoutPdfNestedInput No

PDFUncheckedUpdateWithoutEditionInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
pages Int | IntFieldUpdateOperationsInput No
tags PDFUpdatetagsInput | String No
fileId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PhotoCreateWithoutFileInput

Name Type Nullable
height Int No
width Int No
tags PhotoCreatetagsInput | String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pageArtworks PageArtworkCreateNestedManyWithoutPhotoInput No
concepts ConceptCreateNestedManyWithoutPhotosInput No

PhotoUncheckedCreateWithoutFileInput

Name Type Nullable
height Int No
width Int No
tags PhotoCreatetagsInput | String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pageArtworks PageArtworkUncheckedCreateNestedManyWithoutPhotoInput No
concepts ConceptUncheckedCreateNestedManyWithoutPhotosInput No

PhotoCreateOrConnectWithoutFileInput

Name Type Nullable
where PhotoWhereUniqueInput No
create PhotoCreateWithoutFileInput | PhotoUncheckedCreateWithoutFileInput No

PDFCreateWithoutFileInput

Name Type Nullable
height Int No
width Int No
pages Int No
tags PDFCreatetagsInput | String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
edition EditionCreateNestedOneWithoutPdfInput No

PDFUncheckedCreateWithoutFileInput

Name Type Nullable
height Int No
width Int No
pages Int No
tags PDFCreatetagsInput | String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
edition EditionUncheckedCreateNestedOneWithoutPdfInput No

PDFCreateOrConnectWithoutFileInput

Name Type Nullable
where PDFWhereUniqueInput No
create PDFCreateWithoutFileInput | PDFUncheckedCreateWithoutFileInput No


PhotoUpdateWithoutFileInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
tags PhotoUpdatetagsInput | String No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pageArtworks PageArtworkUpdateManyWithoutPhotoNestedInput No
concepts ConceptUpdateManyWithoutPhotosNestedInput No

PhotoUncheckedUpdateWithoutFileInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
tags PhotoUpdatetagsInput | String No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pageArtworks PageArtworkUncheckedUpdateManyWithoutPhotoNestedInput No
concepts ConceptUncheckedUpdateManyWithoutPhotosNestedInput No


PDFUpdateWithoutFileInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
pages Int | IntFieldUpdateOperationsInput No
tags PDFUpdatetagsInput | String No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
edition EditionUpdateOneWithoutPdfNestedInput No

PDFUncheckedUpdateWithoutFileInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
pages Int | IntFieldUpdateOperationsInput No
tags PDFUpdatetagsInput | String No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
edition EditionUncheckedUpdateOneWithoutPdfNestedInput No

CloudFileCreateWithoutPhotoInput

Name Type Nullable
filename String No
stem String No
extension String No
size Int No
mime String No
resourceType FileResourceType No
metadata JsonNullValueInput | Json No
key String No
bucket String No
region CloudFileRegion No
publicUrl String | Null Yes
privacy FilePrivacy No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pdf PDFCreateNestedOneWithoutFileInput No

CloudFileUncheckedCreateWithoutPhotoInput

Name Type Nullable
filename String No
stem String No
extension String No
size Int No
mime String No
resourceType FileResourceType No
metadata JsonNullValueInput | Json No
key String No
bucket String No
region CloudFileRegion No
publicUrl String | Null Yes
privacy FilePrivacy No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pdf PDFUncheckedCreateNestedOneWithoutFileInput No

CloudFileCreateOrConnectWithoutPhotoInput

Name Type Nullable
where CloudFileWhereUniqueInput No
create CloudFileCreateWithoutPhotoInput | CloudFileUncheckedCreateWithoutPhotoInput No

PageArtworkCreateWithoutPhotoInput

Name Type Nullable
status PageStatus No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
page PageCreateNestedOneWithoutArtworksInput No
story StoryCreateNestedOneWithoutPageArtworksInput No
artist ArtistCreateNestedOneWithoutPageArtworksInput No

PageArtworkUncheckedCreateWithoutPhotoInput

Name Type Nullable
status PageStatus No
pageId String No
storyId String No
artistId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageArtworkCreateOrConnectWithoutPhotoInput

Name Type Nullable
where PageArtworkWhereUniqueInput No
create PageArtworkCreateWithoutPhotoInput | PageArtworkUncheckedCreateWithoutPhotoInput No

PageArtworkCreateManyPhotoInputEnvelope

Name Type Nullable
data PageArtworkCreateManyPhotoInput | PageArtworkCreateManyPhotoInput[] No
skipDuplicates Boolean No

ConceptCreateWithoutPhotosInput

Name Type Nullable
name String No
type ConceptType No
status ConceptStatus No
description String | Null Yes
prompt String No
identifier String No
classNoun String No
negativePrompt String No
instancePrompt String No
classPrompt String No
positivePrompts ConceptCreatepositivePromptsInput | String No
negativePrompts ConceptCreatenegativePromptsInput | String No
dreamboothModelURI String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
dreamboothTraining DreamBoothTrainingCreateNestedOneWithoutConceptInput No

ConceptUncheckedCreateWithoutPhotosInput

Name Type Nullable
name String No
type ConceptType No
status ConceptStatus No
description String | Null Yes
prompt String No
identifier String No
classNoun String No
negativePrompt String No
instancePrompt String No
classPrompt String No
positivePrompts ConceptCreatepositivePromptsInput | String No
negativePrompts ConceptCreatenegativePromptsInput | String No
dreamboothTrainingId String | Null Yes
dreamboothModelURI String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

ConceptCreateOrConnectWithoutPhotosInput

Name Type Nullable
where ConceptWhereUniqueInput No
create ConceptCreateWithoutPhotosInput | ConceptUncheckedCreateWithoutPhotosInput No


CloudFileUpdateWithoutPhotoInput

Name Type Nullable
filename String | StringFieldUpdateOperationsInput No
stem String | StringFieldUpdateOperationsInput No
extension String | StringFieldUpdateOperationsInput No
size Int | IntFieldUpdateOperationsInput No
mime String | StringFieldUpdateOperationsInput No
resourceType FileResourceType | EnumFileResourceTypeFieldUpdateOperationsInput No
metadata JsonNullValueInput | Json No
key String | StringFieldUpdateOperationsInput No
bucket String | StringFieldUpdateOperationsInput No
region CloudFileRegion | EnumCloudFileRegionFieldUpdateOperationsInput No
publicUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
privacy FilePrivacy | EnumFilePrivacyFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pdf PDFUpdateOneWithoutFileNestedInput No

CloudFileUncheckedUpdateWithoutPhotoInput

Name Type Nullable
filename String | StringFieldUpdateOperationsInput No
stem String | StringFieldUpdateOperationsInput No
extension String | StringFieldUpdateOperationsInput No
size Int | IntFieldUpdateOperationsInput No
mime String | StringFieldUpdateOperationsInput No
resourceType FileResourceType | EnumFileResourceTypeFieldUpdateOperationsInput No
metadata JsonNullValueInput | Json No
key String | StringFieldUpdateOperationsInput No
bucket String | StringFieldUpdateOperationsInput No
region CloudFileRegion | EnumCloudFileRegionFieldUpdateOperationsInput No
publicUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
privacy FilePrivacy | EnumFilePrivacyFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pdf PDFUncheckedUpdateOneWithoutFileNestedInput No


PageArtworkUpdateWithWhereUniqueWithoutPhotoInput

Name Type Nullable
where PageArtworkWhereUniqueInput No
data PageArtworkUpdateWithoutPhotoInput | PageArtworkUncheckedUpdateWithoutPhotoInput No

PageArtworkUpdateManyWithWhereWithoutPhotoInput

Name Type Nullable
where PageArtworkScalarWhereInput No
data PageArtworkUpdateManyMutationInput | PageArtworkUncheckedUpdateManyWithoutPageArtworksInput No


ConceptUpdateWithWhereUniqueWithoutPhotosInput

Name Type Nullable
where ConceptWhereUniqueInput No
data ConceptUpdateWithoutPhotosInput | ConceptUncheckedUpdateWithoutPhotosInput No

ConceptUpdateManyWithWhereWithoutPhotosInput

Name Type Nullable
where ConceptScalarWhereInput No
data ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyWithoutConceptsInput No

CloudFileCreateWithoutPdfInput

Name Type Nullable
filename String No
stem String No
extension String No
size Int No
mime String No
resourceType FileResourceType No
metadata JsonNullValueInput | Json No
key String No
bucket String No
region CloudFileRegion No
publicUrl String | Null Yes
privacy FilePrivacy No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
photo PhotoCreateNestedOneWithoutFileInput No

CloudFileUncheckedCreateWithoutPdfInput

Name Type Nullable
filename String No
stem String No
extension String No
size Int No
mime String No
resourceType FileResourceType No
metadata JsonNullValueInput | Json No
key String No
bucket String No
region CloudFileRegion No
publicUrl String | Null Yes
privacy FilePrivacy No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
photo PhotoUncheckedCreateNestedOneWithoutFileInput No

CloudFileCreateOrConnectWithoutPdfInput

Name Type Nullable
where CloudFileWhereUniqueInput No
create CloudFileCreateWithoutPdfInput | CloudFileUncheckedCreateWithoutPdfInput No

EditionCreateWithoutPdfInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
user UserCreateNestedOneWithoutEditionsInput No

EditionUncheckedCreateWithoutPdfInput

Name Type Nullable
userId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

EditionCreateOrConnectWithoutPdfInput

Name Type Nullable
where EditionWhereUniqueInput No
create EditionCreateWithoutPdfInput | EditionUncheckedCreateWithoutPdfInput No


CloudFileUpdateWithoutPdfInput

Name Type Nullable
filename String | StringFieldUpdateOperationsInput No
stem String | StringFieldUpdateOperationsInput No
extension String | StringFieldUpdateOperationsInput No
size Int | IntFieldUpdateOperationsInput No
mime String | StringFieldUpdateOperationsInput No
resourceType FileResourceType | EnumFileResourceTypeFieldUpdateOperationsInput No
metadata JsonNullValueInput | Json No
key String | StringFieldUpdateOperationsInput No
bucket String | StringFieldUpdateOperationsInput No
region CloudFileRegion | EnumCloudFileRegionFieldUpdateOperationsInput No
publicUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
privacy FilePrivacy | EnumFilePrivacyFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
photo PhotoUpdateOneWithoutFileNestedInput No

CloudFileUncheckedUpdateWithoutPdfInput

Name Type Nullable
filename String | StringFieldUpdateOperationsInput No
stem String | StringFieldUpdateOperationsInput No
extension String | StringFieldUpdateOperationsInput No
size Int | IntFieldUpdateOperationsInput No
mime String | StringFieldUpdateOperationsInput No
resourceType FileResourceType | EnumFileResourceTypeFieldUpdateOperationsInput No
metadata JsonNullValueInput | Json No
key String | StringFieldUpdateOperationsInput No
bucket String | StringFieldUpdateOperationsInput No
region CloudFileRegion | EnumCloudFileRegionFieldUpdateOperationsInput No
publicUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
privacy FilePrivacy | EnumFilePrivacyFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
photo PhotoUncheckedUpdateOneWithoutFileNestedInput No


EditionUpdateWithoutPdfInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
user UserUpdateOneRequiredWithoutEditionsNestedInput No

EditionUncheckedUpdateWithoutPdfInput

Name Type Nullable
userId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

ArtistCreateWithoutStoriesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pageArtworks PageArtworkCreateNestedManyWithoutArtistInput No
user UserCreateNestedOneWithoutArtistInput No

ArtistUncheckedCreateWithoutStoriesInput

Name Type Nullable
userId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pageArtworks PageArtworkUncheckedCreateNestedManyWithoutArtistInput No

ArtistCreateOrConnectWithoutStoriesInput

Name Type Nullable
where ArtistWhereUniqueInput No
create ArtistCreateWithoutStoriesInput | ArtistUncheckedCreateWithoutStoriesInput No

AuthorCreateWithoutStoriesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pageTexts PageTextCreateNestedManyWithoutAuthorInput No
user UserCreateNestedOneWithoutAuthorInput No

AuthorUncheckedCreateWithoutStoriesInput

Name Type Nullable
userId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pageTexts PageTextUncheckedCreateNestedManyWithoutAuthorInput No

AuthorCreateOrConnectWithoutStoriesInput

Name Type Nullable
where AuthorWhereUniqueInput No
create AuthorCreateWithoutStoriesInput | AuthorUncheckedCreateWithoutStoriesInput No

PageCreateWithoutStoryInput

Name Type Nullable
status PageStatus No
type PageType No
pageNumber Int No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
artworks PageArtworkCreateNestedManyWithoutPageInput No
texts PageTextCreateNestedManyWithoutPageInput No

PageUncheckedCreateWithoutStoryInput

Name Type Nullable
status PageStatus No
type PageType No
pageNumber Int No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
artworks PageArtworkUncheckedCreateNestedManyWithoutPageInput No
texts PageTextUncheckedCreateNestedManyWithoutPageInput No

PageCreateOrConnectWithoutStoryInput

Name Type Nullable
where PageWhereUniqueInput No
create PageCreateWithoutStoryInput | PageUncheckedCreateWithoutStoryInput No

PageCreateManyStoryInputEnvelope

Name Type Nullable
data PageCreateManyStoryInput | PageCreateManyStoryInput[] No
skipDuplicates Boolean No

PageArtworkCreateWithoutStoryInput

Name Type Nullable
status PageStatus No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
page PageCreateNestedOneWithoutArtworksInput No
artist ArtistCreateNestedOneWithoutPageArtworksInput No
photo PhotoCreateNestedOneWithoutPageArtworksInput No

PageArtworkUncheckedCreateWithoutStoryInput

Name Type Nullable
status PageStatus No
pageId String No
artistId String No
photoId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageArtworkCreateOrConnectWithoutStoryInput

Name Type Nullable
where PageArtworkWhereUniqueInput No
create PageArtworkCreateWithoutStoryInput | PageArtworkUncheckedCreateWithoutStoryInput No

PageArtworkCreateManyStoryInputEnvelope

Name Type Nullable
data PageArtworkCreateManyStoryInput | PageArtworkCreateManyStoryInput[] No
skipDuplicates Boolean No

PageTextCreateWithoutStoryInput

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
page PageCreateNestedOneWithoutTextsInput No
author AuthorCreateNestedOneWithoutPageTextsInput No
translator TranslatorCreateNestedOneWithoutPageTextsInput No

PageTextUncheckedCreateWithoutStoryInput

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
pageId String No
authorId String | Null Yes
translatorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageTextCreateOrConnectWithoutStoryInput

Name Type Nullable
where PageTextWhereUniqueInput No
create PageTextCreateWithoutStoryInput | PageTextUncheckedCreateWithoutStoryInput No

PageTextCreateManyStoryInputEnvelope

Name Type Nullable
data PageTextCreateManyStoryInput | PageTextCreateManyStoryInput[] No
skipDuplicates Boolean No


ArtistUpdateWithoutStoriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pageArtworks PageArtworkUpdateManyWithoutArtistNestedInput No
user UserUpdateOneRequiredWithoutArtistNestedInput No

ArtistUncheckedUpdateWithoutStoriesInput

Name Type Nullable
userId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pageArtworks PageArtworkUncheckedUpdateManyWithoutArtistNestedInput No


AuthorUpdateWithoutStoriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pageTexts PageTextUpdateManyWithoutAuthorNestedInput No
user UserUpdateOneRequiredWithoutAuthorNestedInput No

AuthorUncheckedUpdateWithoutStoriesInput

Name Type Nullable
userId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pageTexts PageTextUncheckedUpdateManyWithoutAuthorNestedInput No

PageUpsertWithWhereUniqueWithoutStoryInput

Name Type Nullable
where PageWhereUniqueInput No
update PageUpdateWithoutStoryInput | PageUncheckedUpdateWithoutStoryInput No
create PageCreateWithoutStoryInput | PageUncheckedCreateWithoutStoryInput No

PageUpdateWithWhereUniqueWithoutStoryInput

Name Type Nullable
where PageWhereUniqueInput No
data PageUpdateWithoutStoryInput | PageUncheckedUpdateWithoutStoryInput No

PageUpdateManyWithWhereWithoutStoryInput

Name Type Nullable
where PageScalarWhereInput No
data PageUpdateManyMutationInput | PageUncheckedUpdateManyWithoutPagesInput No

PageScalarWhereInput

Name Type Nullable
AND PageScalarWhereInput | PageScalarWhereInput[] No
OR PageScalarWhereInput[] No
NOT PageScalarWhereInput | PageScalarWhereInput[] No
status EnumPageStatusFilter | PageStatus No
type EnumPageTypeFilter | PageType No
pageNumber IntFilter | Int No
storyId StringFilter | String No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
deletedAt DateTimeNullableFilter | DateTime | Null Yes
zenstack_guard BoolFilter | Boolean No
zenstack_transaction StringNullableFilter | String | Null Yes


PageArtworkUpdateWithWhereUniqueWithoutStoryInput

Name Type Nullable
where PageArtworkWhereUniqueInput No
data PageArtworkUpdateWithoutStoryInput | PageArtworkUncheckedUpdateWithoutStoryInput No

PageArtworkUpdateManyWithWhereWithoutStoryInput

Name Type Nullable
where PageArtworkScalarWhereInput No
data PageArtworkUpdateManyMutationInput | PageArtworkUncheckedUpdateManyWithoutPageArtworksInput No


PageTextUpdateWithWhereUniqueWithoutStoryInput

Name Type Nullable
where PageTextWhereUniqueInput No
data PageTextUpdateWithoutStoryInput | PageTextUncheckedUpdateWithoutStoryInput No

PageTextUpdateManyWithWhereWithoutStoryInput

Name Type Nullable
where PageTextScalarWhereInput No
data PageTextUpdateManyMutationInput | PageTextUncheckedUpdateManyWithoutPageTextsInput No

PageCreateWithoutArtworksInput

Name Type Nullable
status PageStatus No
type PageType No
pageNumber Int No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
story StoryCreateNestedOneWithoutPagesInput No
texts PageTextCreateNestedManyWithoutPageInput No

PageUncheckedCreateWithoutArtworksInput

Name Type Nullable
status PageStatus No
type PageType No
pageNumber Int No
storyId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
texts PageTextUncheckedCreateNestedManyWithoutPageInput No

PageCreateOrConnectWithoutArtworksInput

Name Type Nullable
where PageWhereUniqueInput No
create PageCreateWithoutArtworksInput | PageUncheckedCreateWithoutArtworksInput No

StoryCreateWithoutPageArtworksInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
artist ArtistCreateNestedOneWithoutStoriesInput No
author AuthorCreateNestedOneWithoutStoriesInput No
pages PageCreateNestedManyWithoutStoryInput No
pageTexts PageTextCreateNestedManyWithoutStoryInput No

StoryUncheckedCreateWithoutPageArtworksInput

Name Type Nullable
artistId String | Null Yes
authorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pages PageUncheckedCreateNestedManyWithoutStoryInput No
pageTexts PageTextUncheckedCreateNestedManyWithoutStoryInput No

StoryCreateOrConnectWithoutPageArtworksInput

Name Type Nullable
where StoryWhereUniqueInput No
create StoryCreateWithoutPageArtworksInput | StoryUncheckedCreateWithoutPageArtworksInput No

ArtistCreateWithoutPageArtworksInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
stories StoryCreateNestedManyWithoutArtistInput No
user UserCreateNestedOneWithoutArtistInput No

ArtistUncheckedCreateWithoutPageArtworksInput

Name Type Nullable
userId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
stories StoryUncheckedCreateNestedManyWithoutArtistInput No

ArtistCreateOrConnectWithoutPageArtworksInput

Name Type Nullable
where ArtistWhereUniqueInput No
create ArtistCreateWithoutPageArtworksInput | ArtistUncheckedCreateWithoutPageArtworksInput No

PhotoCreateWithoutPageArtworksInput

Name Type Nullable
height Int No
width Int No
tags PhotoCreatetagsInput | String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
file CloudFileCreateNestedOneWithoutPhotoInput No
concepts ConceptCreateNestedManyWithoutPhotosInput No

PhotoUncheckedCreateWithoutPageArtworksInput

Name Type Nullable
height Int No
width Int No
tags PhotoCreatetagsInput | String No
fileId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
concepts ConceptUncheckedCreateNestedManyWithoutPhotosInput No

PhotoCreateOrConnectWithoutPageArtworksInput

Name Type Nullable
where PhotoWhereUniqueInput No
create PhotoCreateWithoutPageArtworksInput | PhotoUncheckedCreateWithoutPageArtworksInput No


PageUpdateWithoutArtworksInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
type PageType | EnumPageTypeFieldUpdateOperationsInput No
pageNumber Int | IntFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
story StoryUpdateOneRequiredWithoutPagesNestedInput No
texts PageTextUpdateManyWithoutPageNestedInput No

PageUncheckedUpdateWithoutArtworksInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
type PageType | EnumPageTypeFieldUpdateOperationsInput No
pageNumber Int | IntFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
texts PageTextUncheckedUpdateManyWithoutPageNestedInput No


StoryUpdateWithoutPageArtworksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
artist ArtistUpdateOneWithoutStoriesNestedInput No
author AuthorUpdateOneWithoutStoriesNestedInput No
pages PageUpdateManyWithoutStoryNestedInput No
pageTexts PageTextUpdateManyWithoutStoryNestedInput No

StoryUncheckedUpdateWithoutPageArtworksInput

Name Type Nullable
artistId String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pages PageUncheckedUpdateManyWithoutStoryNestedInput No
pageTexts PageTextUncheckedUpdateManyWithoutStoryNestedInput No


ArtistUpdateWithoutPageArtworksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
stories StoryUpdateManyWithoutArtistNestedInput No
user UserUpdateOneRequiredWithoutArtistNestedInput No

ArtistUncheckedUpdateWithoutPageArtworksInput

Name Type Nullable
userId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
stories StoryUncheckedUpdateManyWithoutArtistNestedInput No


PhotoUpdateWithoutPageArtworksInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
tags PhotoUpdatetagsInput | String No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
file CloudFileUpdateOneRequiredWithoutPhotoNestedInput No
concepts ConceptUpdateManyWithoutPhotosNestedInput No

PhotoUncheckedUpdateWithoutPageArtworksInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
tags PhotoUpdatetagsInput | String No
fileId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
concepts ConceptUncheckedUpdateManyWithoutPhotosNestedInput No

PageCreateWithoutTextsInput

Name Type Nullable
status PageStatus No
type PageType No
pageNumber Int No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
story StoryCreateNestedOneWithoutPagesInput No
artworks PageArtworkCreateNestedManyWithoutPageInput No

PageUncheckedCreateWithoutTextsInput

Name Type Nullable
status PageStatus No
type PageType No
pageNumber Int No
storyId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
artworks PageArtworkUncheckedCreateNestedManyWithoutPageInput No

PageCreateOrConnectWithoutTextsInput

Name Type Nullable
where PageWhereUniqueInput No
create PageCreateWithoutTextsInput | PageUncheckedCreateWithoutTextsInput No

StoryCreateWithoutPageTextsInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
artist ArtistCreateNestedOneWithoutStoriesInput No
author AuthorCreateNestedOneWithoutStoriesInput No
pages PageCreateNestedManyWithoutStoryInput No
pageArtworks PageArtworkCreateNestedManyWithoutStoryInput No

StoryUncheckedCreateWithoutPageTextsInput

Name Type Nullable
artistId String | Null Yes
authorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pages PageUncheckedCreateNestedManyWithoutStoryInput No
pageArtworks PageArtworkUncheckedCreateNestedManyWithoutStoryInput No

StoryCreateOrConnectWithoutPageTextsInput

Name Type Nullable
where StoryWhereUniqueInput No
create StoryCreateWithoutPageTextsInput | StoryUncheckedCreateWithoutPageTextsInput No

AuthorCreateWithoutPageTextsInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
stories StoryCreateNestedManyWithoutAuthorInput No
user UserCreateNestedOneWithoutAuthorInput No

AuthorUncheckedCreateWithoutPageTextsInput

Name Type Nullable
userId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
stories StoryUncheckedCreateNestedManyWithoutAuthorInput No

AuthorCreateOrConnectWithoutPageTextsInput

Name Type Nullable
where AuthorWhereUniqueInput No
create AuthorCreateWithoutPageTextsInput | AuthorUncheckedCreateWithoutPageTextsInput No

TranslatorCreateWithoutPageTextsInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

TranslatorUncheckedCreateWithoutPageTextsInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

TranslatorCreateOrConnectWithoutPageTextsInput

Name Type Nullable
where TranslatorWhereUniqueInput No
create TranslatorCreateWithoutPageTextsInput | TranslatorUncheckedCreateWithoutPageTextsInput No


PageUpdateWithoutTextsInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
type PageType | EnumPageTypeFieldUpdateOperationsInput No
pageNumber Int | IntFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
story StoryUpdateOneRequiredWithoutPagesNestedInput No
artworks PageArtworkUpdateManyWithoutPageNestedInput No

PageUncheckedUpdateWithoutTextsInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
type PageType | EnumPageTypeFieldUpdateOperationsInput No
pageNumber Int | IntFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
artworks PageArtworkUncheckedUpdateManyWithoutPageNestedInput No


StoryUpdateWithoutPageTextsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
artist ArtistUpdateOneWithoutStoriesNestedInput No
author AuthorUpdateOneWithoutStoriesNestedInput No
pages PageUpdateManyWithoutStoryNestedInput No
pageArtworks PageArtworkUpdateManyWithoutStoryNestedInput No

StoryUncheckedUpdateWithoutPageTextsInput

Name Type Nullable
artistId String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pages PageUncheckedUpdateManyWithoutStoryNestedInput No
pageArtworks PageArtworkUncheckedUpdateManyWithoutStoryNestedInput No


AuthorUpdateWithoutPageTextsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
stories StoryUpdateManyWithoutAuthorNestedInput No
user UserUpdateOneRequiredWithoutAuthorNestedInput No

AuthorUncheckedUpdateWithoutPageTextsInput

Name Type Nullable
userId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
stories StoryUncheckedUpdateManyWithoutAuthorNestedInput No


TranslatorUpdateWithoutPageTextsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

TranslatorUncheckedUpdateWithoutPageTextsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

StoryCreateWithoutPagesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
artist ArtistCreateNestedOneWithoutStoriesInput No
author AuthorCreateNestedOneWithoutStoriesInput No
pageArtworks PageArtworkCreateNestedManyWithoutStoryInput No
pageTexts PageTextCreateNestedManyWithoutStoryInput No

StoryUncheckedCreateWithoutPagesInput

Name Type Nullable
artistId String | Null Yes
authorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
pageArtworks PageArtworkUncheckedCreateNestedManyWithoutStoryInput No
pageTexts PageTextUncheckedCreateNestedManyWithoutStoryInput No

StoryCreateOrConnectWithoutPagesInput

Name Type Nullable
where StoryWhereUniqueInput No
create StoryCreateWithoutPagesInput | StoryUncheckedCreateWithoutPagesInput No

PageArtworkCreateWithoutPageInput

Name Type Nullable
status PageStatus No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
story StoryCreateNestedOneWithoutPageArtworksInput No
artist ArtistCreateNestedOneWithoutPageArtworksInput No
photo PhotoCreateNestedOneWithoutPageArtworksInput No

PageArtworkUncheckedCreateWithoutPageInput

Name Type Nullable
status PageStatus No
storyId String No
artistId String No
photoId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageArtworkCreateOrConnectWithoutPageInput

Name Type Nullable
where PageArtworkWhereUniqueInput No
create PageArtworkCreateWithoutPageInput | PageArtworkUncheckedCreateWithoutPageInput No

PageArtworkCreateManyPageInputEnvelope

Name Type Nullable
data PageArtworkCreateManyPageInput | PageArtworkCreateManyPageInput[] No
skipDuplicates Boolean No

PageTextCreateWithoutPageInput

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes
story StoryCreateNestedOneWithoutPageTextsInput No
author AuthorCreateNestedOneWithoutPageTextsInput No
translator TranslatorCreateNestedOneWithoutPageTextsInput No

PageTextUncheckedCreateWithoutPageInput

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
storyId String No
authorId String | Null Yes
translatorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageTextCreateOrConnectWithoutPageInput

Name Type Nullable
where PageTextWhereUniqueInput No
create PageTextCreateWithoutPageInput | PageTextUncheckedCreateWithoutPageInput No

PageTextCreateManyPageInputEnvelope

Name Type Nullable
data PageTextCreateManyPageInput | PageTextCreateManyPageInput[] No
skipDuplicates Boolean No


StoryUpdateWithoutPagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
artist ArtistUpdateOneWithoutStoriesNestedInput No
author AuthorUpdateOneWithoutStoriesNestedInput No
pageArtworks PageArtworkUpdateManyWithoutStoryNestedInput No
pageTexts PageTextUpdateManyWithoutStoryNestedInput No

StoryUncheckedUpdateWithoutPagesInput

Name Type Nullable
artistId String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pageArtworks PageArtworkUncheckedUpdateManyWithoutStoryNestedInput No
pageTexts PageTextUncheckedUpdateManyWithoutStoryNestedInput No


PageArtworkUpdateWithWhereUniqueWithoutPageInput

Name Type Nullable
where PageArtworkWhereUniqueInput No
data PageArtworkUpdateWithoutPageInput | PageArtworkUncheckedUpdateWithoutPageInput No

PageArtworkUpdateManyWithWhereWithoutPageInput

Name Type Nullable
where PageArtworkScalarWhereInput No
data PageArtworkUpdateManyMutationInput | PageArtworkUncheckedUpdateManyWithoutArtworksInput No


PageTextUpdateWithWhereUniqueWithoutPageInput

Name Type Nullable
where PageTextWhereUniqueInput No
data PageTextUpdateWithoutPageInput | PageTextUncheckedUpdateWithoutPageInput No

PageTextUpdateManyWithWhereWithoutPageInput

Name Type Nullable
where PageTextScalarWhereInput No
data PageTextUpdateManyMutationInput | PageTextUncheckedUpdateManyWithoutTextsInput No

EditionCreateManyUserInput

Name Type Nullable
pdfId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

EditionUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pdf PDFUpdateOneRequiredWithoutEditionNestedInput No

EditionUncheckedUpdateWithoutUserInput

Name Type Nullable
pdfId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

EditionUncheckedUpdateManyWithoutEditionsInput

Name Type Nullable
pdfId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

StoryCreateManyAuthorInput

Name Type Nullable
artistId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageTextCreateManyAuthorInput

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
pageId String No
storyId String No
translatorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

StoryUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
artist ArtistUpdateOneWithoutStoriesNestedInput No
pages PageUpdateManyWithoutStoryNestedInput No
pageArtworks PageArtworkUpdateManyWithoutStoryNestedInput No
pageTexts PageTextUpdateManyWithoutStoryNestedInput No

StoryUncheckedUpdateWithoutAuthorInput

Name Type Nullable
artistId String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pages PageUncheckedUpdateManyWithoutStoryNestedInput No
pageArtworks PageArtworkUncheckedUpdateManyWithoutStoryNestedInput No
pageTexts PageTextUncheckedUpdateManyWithoutStoryNestedInput No

StoryUncheckedUpdateManyWithoutStoriesInput

Name Type Nullable
artistId String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageTextUpdateWithoutAuthorInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
locale Locale | EnumLocaleFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
type PageTextType | EnumPageTextTypeFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
page PageUpdateOneRequiredWithoutTextsNestedInput No
story StoryUpdateOneRequiredWithoutPageTextsNestedInput No
translator TranslatorUpdateOneWithoutPageTextsNestedInput No

PageTextUncheckedUpdateWithoutAuthorInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
locale Locale | EnumLocaleFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
type PageTextType | EnumPageTextTypeFieldUpdateOperationsInput No
pageId String | StringFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
translatorId String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageTextUncheckedUpdateManyWithoutPageTextsInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
locale Locale | EnumLocaleFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
type PageTextType | EnumPageTextTypeFieldUpdateOperationsInput No
pageId String | StringFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
translatorId String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

StoryCreateManyArtistInput

Name Type Nullable
authorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageArtworkCreateManyArtistInput

Name Type Nullable
status PageStatus No
pageId String No
storyId String No
photoId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

StoryUpdateWithoutArtistInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
author AuthorUpdateOneWithoutStoriesNestedInput No
pages PageUpdateManyWithoutStoryNestedInput No
pageArtworks PageArtworkUpdateManyWithoutStoryNestedInput No
pageTexts PageTextUpdateManyWithoutStoryNestedInput No

StoryUncheckedUpdateWithoutArtistInput

Name Type Nullable
authorId String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pages PageUncheckedUpdateManyWithoutStoryNestedInput No
pageArtworks PageArtworkUncheckedUpdateManyWithoutStoryNestedInput No
pageTexts PageTextUncheckedUpdateManyWithoutStoryNestedInput No


PageArtworkUncheckedUpdateWithoutArtistInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
pageId String | StringFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
photoId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageArtworkUncheckedUpdateManyWithoutPageArtworksInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
pageId String | StringFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
photoId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageTextCreateManyTranslatorInput

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
pageId String No
storyId String No
authorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageTextUpdateWithoutTranslatorInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
locale Locale | EnumLocaleFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
type PageTextType | EnumPageTextTypeFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
page PageUpdateOneRequiredWithoutTextsNestedInput No
story StoryUpdateOneRequiredWithoutPageTextsNestedInput No
author AuthorUpdateOneWithoutPageTextsNestedInput No

PageTextUncheckedUpdateWithoutTranslatorInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
locale Locale | EnumLocaleFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
type PageTextType | EnumPageTextTypeFieldUpdateOperationsInput No
pageId String | StringFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
authorId String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PhotoUpdateWithoutConceptsInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
tags PhotoUpdatetagsInput | String No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
file CloudFileUpdateOneRequiredWithoutPhotoNestedInput No
pageArtworks PageArtworkUpdateManyWithoutPhotoNestedInput No

PhotoUncheckedUpdateWithoutConceptsInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
tags PhotoUpdatetagsInput | String No
fileId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
pageArtworks PageArtworkUncheckedUpdateManyWithoutPhotoNestedInput No

PhotoUncheckedUpdateManyWithoutPhotosInput

Name Type Nullable
height Int | IntFieldUpdateOperationsInput No
width Int | IntFieldUpdateOperationsInput No
tags PhotoUpdatetagsInput | String No
fileId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

ConceptCreateManyDreamboothTrainingInput

Name Type Nullable
name String No
type ConceptType No
status ConceptStatus No
description String | Null Yes
prompt String No
identifier String No
classNoun String No
negativePrompt String No
instancePrompt String No
classPrompt String No
positivePrompts ConceptCreatepositivePromptsInput | String No
negativePrompts ConceptCreatenegativePromptsInput | String No
dreamboothModelURI String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

ConceptUpdateWithoutDreamboothTrainingInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
type ConceptType | EnumConceptTypeFieldUpdateOperationsInput No
status ConceptStatus | EnumConceptStatusFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
prompt String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
classNoun String | StringFieldUpdateOperationsInput No
negativePrompt String | StringFieldUpdateOperationsInput No
instancePrompt String | StringFieldUpdateOperationsInput No
classPrompt String | StringFieldUpdateOperationsInput No
positivePrompts ConceptUpdatepositivePromptsInput | String No
negativePrompts ConceptUpdatenegativePromptsInput | String No
dreamboothModelURI String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
photos PhotoUpdateManyWithoutConceptsNestedInput No

ConceptUncheckedUpdateWithoutDreamboothTrainingInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
type ConceptType | EnumConceptTypeFieldUpdateOperationsInput No
status ConceptStatus | EnumConceptStatusFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
prompt String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
classNoun String | StringFieldUpdateOperationsInput No
negativePrompt String | StringFieldUpdateOperationsInput No
instancePrompt String | StringFieldUpdateOperationsInput No
classPrompt String | StringFieldUpdateOperationsInput No
positivePrompts ConceptUpdatepositivePromptsInput | String No
negativePrompts ConceptUpdatenegativePromptsInput | String No
dreamboothModelURI String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
photos PhotoUncheckedUpdateManyWithoutConceptsNestedInput No

ConceptUncheckedUpdateManyWithoutConceptInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
type ConceptType | EnumConceptTypeFieldUpdateOperationsInput No
status ConceptStatus | EnumConceptStatusFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
prompt String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
classNoun String | StringFieldUpdateOperationsInput No
negativePrompt String | StringFieldUpdateOperationsInput No
instancePrompt String | StringFieldUpdateOperationsInput No
classPrompt String | StringFieldUpdateOperationsInput No
positivePrompts ConceptUpdatepositivePromptsInput | String No
negativePrompts ConceptUpdatenegativePromptsInput | String No
dreamboothModelURI String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageArtworkCreateManyPhotoInput

Name Type Nullable
status PageStatus No
pageId String No
storyId String No
artistId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes


PageArtworkUncheckedUpdateWithoutPhotoInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
pageId String | StringFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
artistId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

ConceptUpdateWithoutPhotosInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
type ConceptType | EnumConceptTypeFieldUpdateOperationsInput No
status ConceptStatus | EnumConceptStatusFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
prompt String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
classNoun String | StringFieldUpdateOperationsInput No
negativePrompt String | StringFieldUpdateOperationsInput No
instancePrompt String | StringFieldUpdateOperationsInput No
classPrompt String | StringFieldUpdateOperationsInput No
positivePrompts ConceptUpdatepositivePromptsInput | String No
negativePrompts ConceptUpdatenegativePromptsInput | String No
dreamboothModelURI String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
dreamboothTraining DreamBoothTrainingUpdateOneWithoutConceptNestedInput No

ConceptUncheckedUpdateWithoutPhotosInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
type ConceptType | EnumConceptTypeFieldUpdateOperationsInput No
status ConceptStatus | EnumConceptStatusFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
prompt String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
classNoun String | StringFieldUpdateOperationsInput No
negativePrompt String | StringFieldUpdateOperationsInput No
instancePrompt String | StringFieldUpdateOperationsInput No
classPrompt String | StringFieldUpdateOperationsInput No
positivePrompts ConceptUpdatepositivePromptsInput | String No
negativePrompts ConceptUpdatenegativePromptsInput | String No
dreamboothTrainingId String | NullableStringFieldUpdateOperationsInput | Null Yes
dreamboothModelURI String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

ConceptUncheckedUpdateManyWithoutConceptsInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
type ConceptType | EnumConceptTypeFieldUpdateOperationsInput No
status ConceptStatus | EnumConceptStatusFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
prompt String | StringFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
classNoun String | StringFieldUpdateOperationsInput No
negativePrompt String | StringFieldUpdateOperationsInput No
instancePrompt String | StringFieldUpdateOperationsInput No
classPrompt String | StringFieldUpdateOperationsInput No
positivePrompts ConceptUpdatepositivePromptsInput | String No
negativePrompts ConceptUpdatenegativePromptsInput | String No
dreamboothTrainingId String | NullableStringFieldUpdateOperationsInput | Null Yes
dreamboothModelURI String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageCreateManyStoryInput

Name Type Nullable
status PageStatus No
type PageType No
pageNumber Int No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageArtworkCreateManyStoryInput

Name Type Nullable
status PageStatus No
pageId String No
artistId String No
photoId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageTextCreateManyStoryInput

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
pageId String No
authorId String | Null Yes
translatorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageUpdateWithoutStoryInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
type PageType | EnumPageTypeFieldUpdateOperationsInput No
pageNumber Int | IntFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
artworks PageArtworkUpdateManyWithoutPageNestedInput No
texts PageTextUpdateManyWithoutPageNestedInput No

PageUncheckedUpdateWithoutStoryInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
type PageType | EnumPageTypeFieldUpdateOperationsInput No
pageNumber Int | IntFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
artworks PageArtworkUncheckedUpdateManyWithoutPageNestedInput No
texts PageTextUncheckedUpdateManyWithoutPageNestedInput No

PageUncheckedUpdateManyWithoutPagesInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
type PageType | EnumPageTypeFieldUpdateOperationsInput No
pageNumber Int | IntFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes


PageArtworkUncheckedUpdateWithoutStoryInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
pageId String | StringFieldUpdateOperationsInput No
artistId String | StringFieldUpdateOperationsInput No
photoId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageTextUpdateWithoutStoryInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
locale Locale | EnumLocaleFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
type PageTextType | EnumPageTextTypeFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
page PageUpdateOneRequiredWithoutTextsNestedInput No
author AuthorUpdateOneWithoutPageTextsNestedInput No
translator TranslatorUpdateOneWithoutPageTextsNestedInput No

PageTextUncheckedUpdateWithoutStoryInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
locale Locale | EnumLocaleFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
type PageTextType | EnumPageTextTypeFieldUpdateOperationsInput No
pageId String | StringFieldUpdateOperationsInput No
authorId String | NullableStringFieldUpdateOperationsInput | Null Yes
translatorId String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageArtworkCreateManyPageInput

Name Type Nullable
status PageStatus No
storyId String No
artistId String No
photoId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes

PageTextCreateManyPageInput

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
storyId String No
authorId String | Null Yes
translatorId String | Null Yes
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime | Null Yes
zenstack_guard Boolean No
zenstack_transaction String | Null Yes


PageArtworkUncheckedUpdateWithoutPageInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
artistId String | StringFieldUpdateOperationsInput No
photoId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageArtworkUncheckedUpdateManyWithoutArtworksInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
artistId String | StringFieldUpdateOperationsInput No
photoId String | StringFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageTextUpdateWithoutPageInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
locale Locale | EnumLocaleFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
type PageTextType | EnumPageTextTypeFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes
story StoryUpdateOneRequiredWithoutPageTextsNestedInput No
author AuthorUpdateOneWithoutPageTextsNestedInput No
translator TranslatorUpdateOneWithoutPageTextsNestedInput No

PageTextUncheckedUpdateWithoutPageInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
locale Locale | EnumLocaleFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
type PageTextType | EnumPageTextTypeFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
authorId String | NullableStringFieldUpdateOperationsInput | Null Yes
translatorId String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

PageTextUncheckedUpdateManyWithoutTextsInput

Name Type Nullable
status PageStatus | EnumPageStatusFieldUpdateOperationsInput No
locale Locale | EnumLocaleFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
type PageTextType | EnumPageTextTypeFieldUpdateOperationsInput No
storyId String | StringFieldUpdateOperationsInput No
authorId String | NullableStringFieldUpdateOperationsInput | Null Yes
translatorId String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
deletedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
zenstack_guard Boolean | BoolFieldUpdateOperationsInput No
zenstack_transaction String | NullableStringFieldUpdateOperationsInput | Null Yes

Output Types

User

Name Type Nullable
name String Yes
email String Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
artist Artist No
author Author No
editions Edition[] No
_count UserCountOutputType Yes

Author

Name Type Nullable
userId String Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
stories Story[] No
pageTexts PageText[] No
user User Yes
_count AuthorCountOutputType Yes

Artist

Name Type Nullable
userId String Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
stories Story[] No
pageArtworks PageArtwork[] No
user User Yes
_count ArtistCountOutputType Yes

Translator

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
pageTexts PageText[] No
_count TranslatorCountOutputType Yes

Concept

Name Type Nullable
name String Yes
type ConceptType Yes
status ConceptStatus Yes
description String No
prompt String Yes
identifier String Yes
classNoun String Yes
negativePrompt String Yes
instancePrompt String Yes
classPrompt String Yes
positivePrompts String No
negativePrompts String No
dreamboothTrainingId String No
dreamboothModelURI String No
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
dreamboothTraining DreamBoothTraining No
photos Photo[] No
_count ConceptCountOutputType Yes

Prediction

Name Type Nullable
id String Yes
uuid String Yes
input Json No
output Json No
status String No
created_at DateTime No
started_at DateTime No
completed_at DateTime No
version String No
metrics Json No
error String No
logs String No

DreamBoothTraining

Name Type Nullable
id String Yes
createdAt DateTime Yes
instance_prompt String Yes
class_prompt String Yes
instance_data String Yes
class_data String Yes
num_class_images Int Yes
save_sample_prompt String No
save_sample_negative_prompt String No
n_save_sample Int Yes
save_guidance_scale Float Yes
save_infer_steps Int Yes
pad_tokens Boolean Yes
with_prior_preservation Boolean Yes
prior_loss_weight Float Yes
seed Int Yes
resolution Int Yes
center_crop Boolean Yes
train_text_encoder Boolean Yes
train_batch_size Int Yes
sample_batch_size Int Yes
num_train_epochs Int Yes
max_train_steps Int Yes
gradient_accumulation_steps Int Yes
gradient_checkpointing Boolean Yes
learning_rate Float Yes
scale_lr Boolean Yes
lr_scheduler LRScheduler Yes
lr_warmup_steps Int Yes
use_8bit_adam Boolean Yes
adam_beta1 Float Yes
adam_beta2 Float Yes
adam_weight_decay Float Yes
adam_epsilon Float Yes
max_grad_norm Float Yes
zenstack_guard Boolean Yes
zenstack_transaction String No
Concept Concept[] No
_count DreamBoothTrainingCountOutputType Yes

Edition

Name Type Nullable
userId String Yes
pdfId String Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
user User Yes
pdf PDF Yes

CloudFile

Name Type Nullable
filename String Yes
stem String Yes
extension String Yes
size Int Yes
mime String Yes
resourceType FileResourceType Yes
metadata Json Yes
key String Yes
bucket String Yes
region CloudFileRegion Yes
publicUrl String No
privacy FilePrivacy Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
photo Photo No
pdf PDF No

Photo

Name Type Nullable
height Int Yes
width Int Yes
tags String No
fileId String Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
file CloudFile Yes
pageArtworks PageArtwork[] No
concepts Concept[] No
_count PhotoCountOutputType Yes

PDF

Name Type Nullable
height Int Yes
width Int Yes
pages Int Yes
tags String No
fileId String Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
file CloudFile Yes
edition Edition No

Story

Name Type Nullable
artistId String No
authorId String No
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
artist Artist No
author Author No
pages Page[] No
pageArtworks PageArtwork[] No
pageTexts PageText[] No
_count StoryCountOutputType Yes

PageArtwork

Name Type Nullable
status PageStatus Yes
pageId String Yes
storyId String Yes
artistId String Yes
photoId String Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
page Page Yes
story Story Yes
artist Artist Yes
photo Photo Yes

PageText

Name Type Nullable
status PageStatus Yes
locale Locale Yes
text String Yes
type PageTextType Yes
pageId String Yes
storyId String Yes
authorId String No
translatorId String No
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
page Page Yes
story Story Yes
author Author No
translator Translator No

Page

Name Type Nullable
status PageStatus Yes
type PageType Yes
pageNumber Int Yes
storyId String Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
story Story Yes
artworks PageArtwork[] No
texts PageText[] No
_count PageCountOutputType Yes

AggregateUser

Name Type Nullable
_count UserCountAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No

UserGroupByOutputType

Name Type Nullable
name String Yes
email String Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
_count UserCountAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No

AggregateAuthor

Name Type Nullable
_count AuthorCountAggregateOutputType No
_min AuthorMinAggregateOutputType No
_max AuthorMaxAggregateOutputType No

AuthorGroupByOutputType

Name Type Nullable
userId String Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
_count AuthorCountAggregateOutputType No
_min AuthorMinAggregateOutputType No
_max AuthorMaxAggregateOutputType No

AggregateArtist

Name Type Nullable
_count ArtistCountAggregateOutputType No
_min ArtistMinAggregateOutputType No
_max ArtistMaxAggregateOutputType No

ArtistGroupByOutputType

Name Type Nullable
userId String Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
_count ArtistCountAggregateOutputType No
_min ArtistMinAggregateOutputType No
_max ArtistMaxAggregateOutputType No

AggregateTranslator

Name Type Nullable
_count TranslatorCountAggregateOutputType No
_min TranslatorMinAggregateOutputType No
_max TranslatorMaxAggregateOutputType No

TranslatorGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
_count TranslatorCountAggregateOutputType No
_min TranslatorMinAggregateOutputType No
_max TranslatorMaxAggregateOutputType No

AggregateConcept

Name Type Nullable
_count ConceptCountAggregateOutputType No
_min ConceptMinAggregateOutputType No
_max ConceptMaxAggregateOutputType No

ConceptGroupByOutputType

Name Type Nullable
name String Yes
type ConceptType Yes
status ConceptStatus Yes
description String No
prompt String Yes
identifier String Yes
classNoun String Yes
negativePrompt String Yes
instancePrompt String Yes
classPrompt String Yes
positivePrompts String No
negativePrompts String No
dreamboothTrainingId String No
dreamboothModelURI String No
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
_count ConceptCountAggregateOutputType No
_min ConceptMinAggregateOutputType No
_max ConceptMaxAggregateOutputType No

AggregatePrediction

Name Type Nullable
_count PredictionCountAggregateOutputType No
_min PredictionMinAggregateOutputType No
_max PredictionMaxAggregateOutputType No

PredictionGroupByOutputType

Name Type Nullable
id String Yes
uuid String Yes
input Json No
output Json No
status String No
created_at DateTime No
started_at DateTime No
completed_at DateTime No
version String No
metrics Json No
error String No
logs String No
_count PredictionCountAggregateOutputType No
_min PredictionMinAggregateOutputType No
_max PredictionMaxAggregateOutputType No


DreamBoothTrainingGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
instance_prompt String Yes
class_prompt String Yes
instance_data String Yes
class_data String Yes
num_class_images Int Yes
save_sample_prompt String No
save_sample_negative_prompt String No
n_save_sample Int Yes
save_guidance_scale Float Yes
save_infer_steps Int Yes
pad_tokens Boolean Yes
with_prior_preservation Boolean Yes
prior_loss_weight Float Yes
seed Int Yes
resolution Int Yes
center_crop Boolean Yes
train_text_encoder Boolean Yes
train_batch_size Int Yes
sample_batch_size Int Yes
num_train_epochs Int Yes
max_train_steps Int Yes
gradient_accumulation_steps Int Yes
gradient_checkpointing Boolean Yes
learning_rate Float Yes
scale_lr Boolean Yes
lr_scheduler LRScheduler Yes
lr_warmup_steps Int Yes
use_8bit_adam Boolean Yes
adam_beta1 Float Yes
adam_beta2 Float Yes
adam_weight_decay Float Yes
adam_epsilon Float Yes
max_grad_norm Float Yes
zenstack_guard Boolean Yes
zenstack_transaction String No
_count DreamBoothTrainingCountAggregateOutputType No
_avg DreamBoothTrainingAvgAggregateOutputType No
_sum DreamBoothTrainingSumAggregateOutputType No
_min DreamBoothTrainingMinAggregateOutputType No
_max DreamBoothTrainingMaxAggregateOutputType No

AggregateEdition

Name Type Nullable
_count EditionCountAggregateOutputType No
_min EditionMinAggregateOutputType No
_max EditionMaxAggregateOutputType No

EditionGroupByOutputType

Name Type Nullable
userId String Yes
pdfId String Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
_count EditionCountAggregateOutputType No
_min EditionMinAggregateOutputType No
_max EditionMaxAggregateOutputType No


CloudFileGroupByOutputType

Name Type Nullable
filename String Yes
stem String Yes
extension String Yes
size Int Yes
mime String Yes
resourceType FileResourceType Yes
metadata Json Yes
key String Yes
bucket String Yes
region CloudFileRegion Yes
publicUrl String No
privacy FilePrivacy Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
_count CloudFileCountAggregateOutputType No
_avg CloudFileAvgAggregateOutputType No
_sum CloudFileSumAggregateOutputType No
_min CloudFileMinAggregateOutputType No
_max CloudFileMaxAggregateOutputType No


PhotoGroupByOutputType

Name Type Nullable
height Int Yes
width Int Yes
tags String No
fileId String Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
_count PhotoCountAggregateOutputType No
_avg PhotoAvgAggregateOutputType No
_sum PhotoSumAggregateOutputType No
_min PhotoMinAggregateOutputType No
_max PhotoMaxAggregateOutputType No


PDFGroupByOutputType

Name Type Nullable
height Int Yes
width Int Yes
pages Int Yes
tags String No
fileId String Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
_count PDFCountAggregateOutputType No
_avg PDFAvgAggregateOutputType No
_sum PDFSumAggregateOutputType No
_min PDFMinAggregateOutputType No
_max PDFMaxAggregateOutputType No

AggregateStory

Name Type Nullable
_count StoryCountAggregateOutputType No
_min StoryMinAggregateOutputType No
_max StoryMaxAggregateOutputType No

StoryGroupByOutputType

Name Type Nullable
artistId String No
authorId String No
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
_count StoryCountAggregateOutputType No
_min StoryMinAggregateOutputType No
_max StoryMaxAggregateOutputType No

AggregatePageArtwork

Name Type Nullable
_count PageArtworkCountAggregateOutputType No
_min PageArtworkMinAggregateOutputType No
_max PageArtworkMaxAggregateOutputType No

PageArtworkGroupByOutputType

Name Type Nullable
status PageStatus Yes
pageId String Yes
storyId String Yes
artistId String Yes
photoId String Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
_count PageArtworkCountAggregateOutputType No
_min PageArtworkMinAggregateOutputType No
_max PageArtworkMaxAggregateOutputType No

AggregatePageText

Name Type Nullable
_count PageTextCountAggregateOutputType No
_min PageTextMinAggregateOutputType No
_max PageTextMaxAggregateOutputType No

PageTextGroupByOutputType

Name Type Nullable
status PageStatus Yes
locale Locale Yes
text String Yes
type PageTextType Yes
pageId String Yes
storyId String Yes
authorId String No
translatorId String No
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
_count PageTextCountAggregateOutputType No
_min PageTextMinAggregateOutputType No
_max PageTextMaxAggregateOutputType No


PageGroupByOutputType

Name Type Nullable
status PageStatus Yes
type PageType Yes
pageNumber Int Yes
storyId String Yes
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
deletedAt DateTime No
zenstack_guard Boolean Yes
zenstack_transaction String No
_count PageCountAggregateOutputType No
_avg PageAvgAggregateOutputType No
_sum PageSumAggregateOutputType No
_min PageMinAggregateOutputType No
_max PageMaxAggregateOutputType No

AffectedRowsOutput

Name Type Nullable
count Int Yes

UserCountOutputType

Name Type Nullable
editions Int Yes

UserCountAggregateOutputType

Name Type Nullable
name Int Yes
email Int Yes
id Int Yes
createdAt Int Yes
updatedAt Int Yes
deletedAt Int Yes
zenstack_guard Int Yes
zenstack_transaction Int Yes
_all Int Yes

UserMinAggregateOutputType

Name Type Nullable
name String No
email String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

UserMaxAggregateOutputType

Name Type Nullable
name String No
email String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

AuthorCountOutputType

Name Type Nullable
stories Int Yes
pageTexts Int Yes

AuthorCountAggregateOutputType

Name Type Nullable
userId Int Yes
id Int Yes
createdAt Int Yes
updatedAt Int Yes
deletedAt Int Yes
zenstack_guard Int Yes
zenstack_transaction Int Yes
_all Int Yes

AuthorMinAggregateOutputType

Name Type Nullable
userId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

AuthorMaxAggregateOutputType

Name Type Nullable
userId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

ArtistCountOutputType

Name Type Nullable
stories Int Yes
pageArtworks Int Yes

ArtistCountAggregateOutputType

Name Type Nullable
userId Int Yes
id Int Yes
createdAt Int Yes
updatedAt Int Yes
deletedAt Int Yes
zenstack_guard Int Yes
zenstack_transaction Int Yes
_all Int Yes

ArtistMinAggregateOutputType

Name Type Nullable
userId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

ArtistMaxAggregateOutputType

Name Type Nullable
userId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

TranslatorCountOutputType

Name Type Nullable
pageTexts Int Yes

TranslatorCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
deletedAt Int Yes
zenstack_guard Int Yes
zenstack_transaction Int Yes
_all Int Yes

TranslatorMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

TranslatorMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

ConceptCountOutputType

Name Type Nullable
photos Int Yes

ConceptCountAggregateOutputType

Name Type Nullable
name Int Yes
type Int Yes
status Int Yes
description Int Yes
prompt Int Yes
identifier Int Yes
classNoun Int Yes
negativePrompt Int Yes
instancePrompt Int Yes
classPrompt Int Yes
positivePrompts Int Yes
negativePrompts Int Yes
dreamboothTrainingId Int Yes
dreamboothModelURI Int Yes
id Int Yes
createdAt Int Yes
updatedAt Int Yes
deletedAt Int Yes
zenstack_guard Int Yes
zenstack_transaction Int Yes
_all Int Yes

ConceptMinAggregateOutputType

Name Type Nullable
name String No
type ConceptType No
status ConceptStatus No
description String No
prompt String No
identifier String No
classNoun String No
negativePrompt String No
instancePrompt String No
classPrompt String No
dreamboothTrainingId String No
dreamboothModelURI String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

ConceptMaxAggregateOutputType

Name Type Nullable
name String No
type ConceptType No
status ConceptStatus No
description String No
prompt String No
identifier String No
classNoun String No
negativePrompt String No
instancePrompt String No
classPrompt String No
dreamboothTrainingId String No
dreamboothModelURI String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

PredictionCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
input Int Yes
output Int Yes
status Int Yes
created_at Int Yes
started_at Int Yes
completed_at Int Yes
version Int Yes
metrics Int Yes
error Int Yes
logs Int Yes
_all Int Yes

PredictionMinAggregateOutputType

Name Type Nullable
id String No
uuid String No
status String No
created_at DateTime No
started_at DateTime No
completed_at DateTime No
version String No
error String No
logs String No

PredictionMaxAggregateOutputType

Name Type Nullable
id String No
uuid String No
status String No
created_at DateTime No
started_at DateTime No
completed_at DateTime No
version String No
error String No
logs String No

DreamBoothTrainingCountOutputType

Name Type Nullable
Concept Int Yes

DreamBoothTrainingCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
instance_prompt Int Yes
class_prompt Int Yes
instance_data Int Yes
class_data Int Yes
num_class_images Int Yes
save_sample_prompt Int Yes
save_sample_negative_prompt Int Yes
n_save_sample Int Yes
save_guidance_scale Int Yes
save_infer_steps Int Yes
pad_tokens Int Yes
with_prior_preservation Int Yes
prior_loss_weight Int Yes
seed Int Yes
resolution Int Yes
center_crop Int Yes
train_text_encoder Int Yes
train_batch_size Int Yes
sample_batch_size Int Yes
num_train_epochs Int Yes
max_train_steps Int Yes
gradient_accumulation_steps Int Yes
gradient_checkpointing Int Yes
learning_rate Int Yes
scale_lr Int Yes
lr_scheduler Int Yes
lr_warmup_steps Int Yes
use_8bit_adam Int Yes
adam_beta1 Int Yes
adam_beta2 Int Yes
adam_weight_decay Int Yes
adam_epsilon Int Yes
max_grad_norm Int Yes
zenstack_guard Int Yes
zenstack_transaction Int Yes
_all Int Yes

DreamBoothTrainingAvgAggregateOutputType

Name Type Nullable
num_class_images Float No
n_save_sample Float No
save_guidance_scale Float No
save_infer_steps Float No
prior_loss_weight Float No
seed Float No
resolution Float No
train_batch_size Float No
sample_batch_size Float No
num_train_epochs Float No
max_train_steps Float No
gradient_accumulation_steps Float No
learning_rate Float No
lr_warmup_steps Float No
adam_beta1 Float No
adam_beta2 Float No
adam_weight_decay Float No
adam_epsilon Float No
max_grad_norm Float No

DreamBoothTrainingSumAggregateOutputType

Name Type Nullable
num_class_images Int No
n_save_sample Int No
save_guidance_scale Float No
save_infer_steps Int No
prior_loss_weight Float No
seed Int No
resolution Int No
train_batch_size Int No
sample_batch_size Int No
num_train_epochs Int No
max_train_steps Int No
gradient_accumulation_steps Int No
learning_rate Float No
lr_warmup_steps Int No
adam_beta1 Float No
adam_beta2 Float No
adam_weight_decay Float No
adam_epsilon Float No
max_grad_norm Float No

DreamBoothTrainingMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
instance_prompt String No
class_prompt String No
instance_data String No
class_data String No
num_class_images Int No
save_sample_prompt String No
save_sample_negative_prompt String No
n_save_sample Int No
save_guidance_scale Float No
save_infer_steps Int No
pad_tokens Boolean No
with_prior_preservation Boolean No
prior_loss_weight Float No
seed Int No
resolution Int No
center_crop Boolean No
train_text_encoder Boolean No
train_batch_size Int No
sample_batch_size Int No
num_train_epochs Int No
max_train_steps Int No
gradient_accumulation_steps Int No
gradient_checkpointing Boolean No
learning_rate Float No
scale_lr Boolean No
lr_scheduler LRScheduler No
lr_warmup_steps Int No
use_8bit_adam Boolean No
adam_beta1 Float No
adam_beta2 Float No
adam_weight_decay Float No
adam_epsilon Float No
max_grad_norm Float No
zenstack_guard Boolean No
zenstack_transaction String No

DreamBoothTrainingMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
instance_prompt String No
class_prompt String No
instance_data String No
class_data String No
num_class_images Int No
save_sample_prompt String No
save_sample_negative_prompt String No
n_save_sample Int No
save_guidance_scale Float No
save_infer_steps Int No
pad_tokens Boolean No
with_prior_preservation Boolean No
prior_loss_weight Float No
seed Int No
resolution Int No
center_crop Boolean No
train_text_encoder Boolean No
train_batch_size Int No
sample_batch_size Int No
num_train_epochs Int No
max_train_steps Int No
gradient_accumulation_steps Int No
gradient_checkpointing Boolean No
learning_rate Float No
scale_lr Boolean No
lr_scheduler LRScheduler No
lr_warmup_steps Int No
use_8bit_adam Boolean No
adam_beta1 Float No
adam_beta2 Float No
adam_weight_decay Float No
adam_epsilon Float No
max_grad_norm Float No
zenstack_guard Boolean No
zenstack_transaction String No

EditionCountAggregateOutputType

Name Type Nullable
userId Int Yes
pdfId Int Yes
id Int Yes
createdAt Int Yes
updatedAt Int Yes
deletedAt Int Yes
zenstack_guard Int Yes
zenstack_transaction Int Yes
_all Int Yes

EditionMinAggregateOutputType

Name Type Nullable
userId String No
pdfId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

EditionMaxAggregateOutputType

Name Type Nullable
userId String No
pdfId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

CloudFileCountAggregateOutputType

Name Type Nullable
filename Int Yes
stem Int Yes
extension Int Yes
size Int Yes
mime Int Yes
resourceType Int Yes
metadata Int Yes
key Int Yes
bucket Int Yes
region Int Yes
publicUrl Int Yes
privacy Int Yes
id Int Yes
createdAt Int Yes
updatedAt Int Yes
deletedAt Int Yes
zenstack_guard Int Yes
zenstack_transaction Int Yes
_all Int Yes

CloudFileAvgAggregateOutputType

Name Type Nullable
size Float No

CloudFileSumAggregateOutputType

Name Type Nullable
size Int No

CloudFileMinAggregateOutputType

Name Type Nullable
filename String No
stem String No
extension String No
size Int No
mime String No
resourceType FileResourceType No
key String No
bucket String No
region CloudFileRegion No
publicUrl String No
privacy FilePrivacy No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

CloudFileMaxAggregateOutputType

Name Type Nullable
filename String No
stem String No
extension String No
size Int No
mime String No
resourceType FileResourceType No
key String No
bucket String No
region CloudFileRegion No
publicUrl String No
privacy FilePrivacy No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

PhotoCountOutputType

Name Type Nullable
pageArtworks Int Yes
concepts Int Yes

PhotoCountAggregateOutputType

Name Type Nullable
height Int Yes
width Int Yes
tags Int Yes
fileId Int Yes
id Int Yes
createdAt Int Yes
updatedAt Int Yes
deletedAt Int Yes
zenstack_guard Int Yes
zenstack_transaction Int Yes
_all Int Yes

PhotoAvgAggregateOutputType

Name Type Nullable
height Float No
width Float No

PhotoSumAggregateOutputType

Name Type Nullable
height Int No
width Int No

PhotoMinAggregateOutputType

Name Type Nullable
height Int No
width Int No
fileId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

PhotoMaxAggregateOutputType

Name Type Nullable
height Int No
width Int No
fileId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

PDFCountAggregateOutputType

Name Type Nullable
height Int Yes
width Int Yes
pages Int Yes
tags Int Yes
fileId Int Yes
id Int Yes
createdAt Int Yes
updatedAt Int Yes
deletedAt Int Yes
zenstack_guard Int Yes
zenstack_transaction Int Yes
_all Int Yes

PDFAvgAggregateOutputType

Name Type Nullable
height Float No
width Float No
pages Float No

PDFSumAggregateOutputType

Name Type Nullable
height Int No
width Int No
pages Int No

PDFMinAggregateOutputType

Name Type Nullable
height Int No
width Int No
pages Int No
fileId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

PDFMaxAggregateOutputType

Name Type Nullable
height Int No
width Int No
pages Int No
fileId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

StoryCountOutputType

Name Type Nullable
pages Int Yes
pageArtworks Int Yes
pageTexts Int Yes

StoryCountAggregateOutputType

Name Type Nullable
artistId Int Yes
authorId Int Yes
id Int Yes
createdAt Int Yes
updatedAt Int Yes
deletedAt Int Yes
zenstack_guard Int Yes
zenstack_transaction Int Yes
_all Int Yes

StoryMinAggregateOutputType

Name Type Nullable
artistId String No
authorId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

StoryMaxAggregateOutputType

Name Type Nullable
artistId String No
authorId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

PageArtworkCountAggregateOutputType

Name Type Nullable
status Int Yes
pageId Int Yes
storyId Int Yes
artistId Int Yes
photoId Int Yes
id Int Yes
createdAt Int Yes
updatedAt Int Yes
deletedAt Int Yes
zenstack_guard Int Yes
zenstack_transaction Int Yes
_all Int Yes

PageArtworkMinAggregateOutputType

Name Type Nullable
status PageStatus No
pageId String No
storyId String No
artistId String No
photoId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

PageArtworkMaxAggregateOutputType

Name Type Nullable
status PageStatus No
pageId String No
storyId String No
artistId String No
photoId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

PageTextCountAggregateOutputType

Name Type Nullable
status Int Yes
locale Int Yes
text Int Yes
type Int Yes
pageId Int Yes
storyId Int Yes
authorId Int Yes
translatorId Int Yes
id Int Yes
createdAt Int Yes
updatedAt Int Yes
deletedAt Int Yes
zenstack_guard Int Yes
zenstack_transaction Int Yes
_all Int Yes

PageTextMinAggregateOutputType

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
pageId String No
storyId String No
authorId String No
translatorId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

PageTextMaxAggregateOutputType

Name Type Nullable
status PageStatus No
locale Locale No
text String No
type PageTextType No
pageId String No
storyId String No
authorId String No
translatorId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

PageCountOutputType

Name Type Nullable
artworks Int Yes
texts Int Yes

PageCountAggregateOutputType

Name Type Nullable
status Int Yes
type Int Yes
pageNumber Int Yes
storyId Int Yes
id Int Yes
createdAt Int Yes
updatedAt Int Yes
deletedAt Int Yes
zenstack_guard Int Yes
zenstack_transaction Int Yes
_all Int Yes

PageAvgAggregateOutputType

Name Type Nullable
pageNumber Float No

PageSumAggregateOutputType

Name Type Nullable
pageNumber Int No

PageMinAggregateOutputType

Name Type Nullable
status PageStatus No
type PageType No
pageNumber Int No
storyId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No

PageMaxAggregateOutputType

Name Type Nullable
status PageStatus No
type PageType No
pageNumber Int No
storyId String No
id String No
createdAt DateTime No
updatedAt DateTime No
deletedAt DateTime No
zenstack_guard Boolean No
zenstack_transaction String No